@tsonic/aspnetcore 10.0.2 → 10.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.AspNetCore/internal/index.d.ts +6 -6
- package/Microsoft.AspNetCore.Antiforgery/internal/index.d.ts +27 -9
- package/Microsoft.AspNetCore.Authentication/internal/index.d.ts +250 -112
- package/Microsoft.AspNetCore.Authentication.BearerToken/internal/index.d.ts +13 -5
- package/Microsoft.AspNetCore.Authentication.Cookies/internal/index.d.ts +64 -34
- package/Microsoft.AspNetCore.Authentication.OAuth/internal/index.d.ts +47 -28
- package/Microsoft.AspNetCore.Authentication.OAuth.Claims/internal/index.d.ts +28 -11
- package/Microsoft.AspNetCore.Authorization/internal/index.d.ts +137 -75
- package/Microsoft.AspNetCore.Authorization.Infrastructure/internal/index.d.ts +53 -32
- package/Microsoft.AspNetCore.Authorization.Policy/internal/index.d.ts +21 -13
- package/Microsoft.AspNetCore.Builder/internal/index.d.ts +221 -139
- package/Microsoft.AspNetCore.Builder.Extensions/internal/index.d.ts +15 -5
- package/Microsoft.AspNetCore.Components/internal/index.d.ts +358 -187
- package/Microsoft.AspNetCore.Components.Authorization/internal/index.d.ts +46 -17
- package/Microsoft.AspNetCore.Components.CompilerServices/internal/index.d.ts +8 -8
- package/Microsoft.AspNetCore.Components.Endpoints/internal/index.d.ts +15 -5
- package/Microsoft.AspNetCore.Components.Endpoints.Infrastructure/internal/index.d.ts +6 -4
- package/Microsoft.AspNetCore.Components.Forms/internal/index.d.ts +220 -89
- package/Microsoft.AspNetCore.Components.Forms.Mapping/internal/index.d.ts +15 -9
- package/Microsoft.AspNetCore.Components.Forms.Mapping.d.ts +3 -0
- package/Microsoft.AspNetCore.Components.HtmlRendering.Infrastructure/internal/index.d.ts +10 -5
- package/Microsoft.AspNetCore.Components.Infrastructure/internal/index.d.ts +9 -7
- package/Microsoft.AspNetCore.Components.Infrastructure.d.ts +3 -0
- package/Microsoft.AspNetCore.Components.RenderTree/internal/index.d.ts +44 -13
- package/Microsoft.AspNetCore.Components.Rendering/internal/index.d.ts +16 -8
- package/Microsoft.AspNetCore.Components.Routing/internal/index.d.ts +55 -22
- package/Microsoft.AspNetCore.Components.Sections/internal/index.d.ts +15 -9
- package/Microsoft.AspNetCore.Components.Server/internal/index.d.ts +33 -20
- package/Microsoft.AspNetCore.Components.Server.Circuits/internal/index.d.ts +11 -5
- package/Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage/internal/index.d.ts +13 -5
- package/Microsoft.AspNetCore.Components.Web/internal/index.d.ts +105 -37
- package/Microsoft.AspNetCore.Components.Web.HtmlRendering/internal/index.d.ts +6 -4
- package/Microsoft.AspNetCore.Components.Web.Infrastructure/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Components.Web.Internal/internal/index.d.ts +3 -1
- package/Microsoft.AspNetCore.Components.Web.Virtualization/internal/index.d.ts +27 -15
- package/Microsoft.AspNetCore.Connections/internal/index.d.ts +130 -49
- package/Microsoft.AspNetCore.Connections.Abstractions/internal/index.d.ts +6 -4
- package/Microsoft.AspNetCore.Connections.Features/internal/index.d.ts +64 -20
- package/Microsoft.AspNetCore.CookiePolicy/internal/index.d.ts +13 -7
- package/Microsoft.AspNetCore.Cors/internal/index.d.ts +19 -8
- package/Microsoft.AspNetCore.Cors.Infrastructure/internal/index.d.ts +55 -29
- package/Microsoft.AspNetCore.Cryptography.KeyDerivation/internal/index.d.ts +2 -2
- package/Microsoft.AspNetCore.DataProtection/internal/index.d.ts +43 -20
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption/internal/index.d.ts +28 -16
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel/internal/index.d.ts +59 -27
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel.d.ts +3 -0
- package/Microsoft.AspNetCore.DataProtection.Infrastructure/internal/index.d.ts +3 -1
- package/Microsoft.AspNetCore.DataProtection.Internal/internal/index.d.ts +3 -1
- package/Microsoft.AspNetCore.DataProtection.KeyManagement/internal/index.d.ts +32 -19
- package/Microsoft.AspNetCore.DataProtection.KeyManagement.Internal/internal/index.d.ts +19 -5
- package/Microsoft.AspNetCore.DataProtection.Repositories/internal/index.d.ts +31 -15
- package/Microsoft.AspNetCore.DataProtection.XmlEncryption/internal/index.d.ts +58 -32
- package/Microsoft.AspNetCore.Diagnostics/internal/index.d.ts +64 -21
- package/Microsoft.AspNetCore.Diagnostics.HealthChecks/internal/index.d.ts +15 -11
- package/Microsoft.AspNetCore.HostFiltering/internal/index.d.ts +12 -8
- package/Microsoft.AspNetCore.Hosting/internal/index.d.ts +89 -47
- package/Microsoft.AspNetCore.Hosting.Builder/internal/index.d.ts +9 -5
- package/Microsoft.AspNetCore.Hosting.Infrastructure/internal/index.d.ts +10 -6
- package/Microsoft.AspNetCore.Hosting.Server/internal/index.d.ts +16 -4
- package/Microsoft.AspNetCore.Hosting.Server.Abstractions/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Hosting.Server.Features/internal/index.d.ts +12 -8
- package/Microsoft.AspNetCore.Hosting.StaticWebAssets/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Html/internal/index.d.ts +31 -13
- package/Microsoft.AspNetCore.Http/internal/index.d.ts +408 -199
- package/Microsoft.AspNetCore.Http.Connections/internal/index.d.ts +34 -16
- package/Microsoft.AspNetCore.Http.Connections.Features/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Http.Extensions/internal/index.d.ts +21 -16
- package/Microsoft.AspNetCore.Http.Features/internal/index.d.ts +208 -88
- package/Microsoft.AspNetCore.Http.Features.Authentication/internal/index.d.ts +10 -6
- package/Microsoft.AspNetCore.Http.Headers/internal/index.d.ts +31 -27
- package/Microsoft.AspNetCore.Http.HttpResults/internal/index.d.ts +378 -171
- package/Microsoft.AspNetCore.Http.Json/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Http.Metadata/internal/index.d.ts +74 -26
- package/Microsoft.AspNetCore.Http.Timeouts/internal/index.d.ts +18 -8
- package/Microsoft.AspNetCore.HttpLogging/internal/index.d.ts +23 -11
- package/Microsoft.AspNetCore.HttpOverrides/internal/index.d.ts +23 -13
- package/Microsoft.AspNetCore.HttpsPolicy/internal/index.d.ts +21 -13
- package/Microsoft.AspNetCore.Identity/internal/index.d.ts +725 -456
- package/Microsoft.AspNetCore.Identity.Data/internal/index.d.ts +23 -3
- package/Microsoft.AspNetCore.Identity.UI.Services/internal/index.d.ts +10 -6
- package/Microsoft.AspNetCore.Localization/internal/index.d.ts +57 -27
- package/Microsoft.AspNetCore.Localization.Routing/internal/index.d.ts +7 -3
- package/Microsoft.AspNetCore.Mvc/internal/index.d.ts +724 -205
- package/Microsoft.AspNetCore.Mvc.Abstractions/internal/index.d.ts +27 -13
- package/Microsoft.AspNetCore.Mvc.ActionConstraints/internal/index.d.ts +37 -13
- package/Microsoft.AspNetCore.Mvc.ApiExplorer/internal/index.d.ts +76 -30
- package/Microsoft.AspNetCore.Mvc.ApplicationModels/internal/index.d.ts +244 -125
- package/Microsoft.AspNetCore.Mvc.ApplicationParts/internal/index.d.ts +59 -25
- package/Microsoft.AspNetCore.Mvc.Authorization/internal/index.d.ts +21 -10
- package/Microsoft.AspNetCore.Mvc.Controllers/internal/index.d.ts +51 -24
- package/Microsoft.AspNetCore.Mvc.Core.Infrastructure/internal/index.d.ts +3 -1
- package/Microsoft.AspNetCore.Mvc.Cors/internal/index.d.ts +12 -7
- package/Microsoft.AspNetCore.Mvc.DataAnnotations/internal/index.d.ts +43 -18
- package/Microsoft.AspNetCore.Mvc.Diagnostics/internal/index.d.ts +431 -68
- package/Microsoft.AspNetCore.Mvc.Filters/internal/index.d.ts +140 -44
- package/Microsoft.AspNetCore.Mvc.Formatters/internal/index.d.ts +192 -89
- package/Microsoft.AspNetCore.Mvc.Formatters.Xml/internal/index.d.ts +77 -36
- package/Microsoft.AspNetCore.Mvc.Formatters.Xml.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.Infrastructure/internal/index.d.ts +162 -66
- package/Microsoft.AspNetCore.Mvc.Localization/internal/index.d.ts +48 -25
- package/Microsoft.AspNetCore.Mvc.ModelBinding/internal/index.d.ts +379 -133
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Binders/internal/index.d.ts +217 -128
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Metadata/internal/index.d.ts +156 -102
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Validation/internal/index.d.ts +100 -43
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Validation.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.Razor/internal/index.d.ts +105 -56
- package/Microsoft.AspNetCore.Mvc.Razor.Compilation/internal/index.d.ts +19 -9
- package/Microsoft.AspNetCore.Mvc.Razor.Infrastructure/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Mvc.Razor.Internal/internal/index.d.ts +4 -2
- package/Microsoft.AspNetCore.Mvc.Razor.TagHelpers/internal/index.d.ts +43 -18
- package/Microsoft.AspNetCore.Mvc.RazorPages/internal/index.d.ts +81 -42
- package/Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure/internal/index.d.ts +70 -37
- package/Microsoft.AspNetCore.Mvc.Rendering/internal/index.d.ts +123 -95
- package/Microsoft.AspNetCore.Mvc.Routing/internal/index.d.ts +57 -25
- package/Microsoft.AspNetCore.Mvc.TagHelpers/internal/index.d.ts +151 -72
- package/Microsoft.AspNetCore.Mvc.TagHelpers.Cache/internal/index.d.ts +41 -23
- package/Microsoft.AspNetCore.Mvc.ViewComponents/internal/index.d.ts +94 -48
- package/Microsoft.AspNetCore.Mvc.ViewEngines/internal/index.d.ts +24 -11
- package/Microsoft.AspNetCore.Mvc.ViewFeatures/internal/index.d.ts +266 -144
- package/Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers/internal/index.d.ts +7 -3
- package/Microsoft.AspNetCore.Mvc.ViewFeatures.Infrastructure/internal/index.d.ts +7 -5
- package/Microsoft.AspNetCore.OutputCaching/internal/index.d.ts +44 -26
- package/Microsoft.AspNetCore.RateLimiting/internal/index.d.ts +22 -12
- package/Microsoft.AspNetCore.Razor.Hosting/internal/index.d.ts +28 -10
- package/Microsoft.AspNetCore.Razor.Runtime.TagHelpers/internal/index.d.ts +17 -11
- package/Microsoft.AspNetCore.Razor.TagHelpers/internal/index.d.ts +100 -31
- package/Microsoft.AspNetCore.RequestDecompression/internal/index.d.ts +11 -5
- package/Microsoft.AspNetCore.ResponseCaching/internal/index.d.ts +18 -10
- package/Microsoft.AspNetCore.ResponseCompression/internal/index.d.ts +64 -29
- package/Microsoft.AspNetCore.Rewrite/internal/index.d.ts +20 -12
- package/Microsoft.AspNetCore.Routing/internal/index.d.ts +291 -131
- package/Microsoft.AspNetCore.Routing.Constraints/internal/index.d.ts +191 -79
- package/Microsoft.AspNetCore.Routing.Internal/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Routing.Matching/internal/index.d.ts +61 -25
- package/Microsoft.AspNetCore.Routing.Patterns/internal/index.d.ts +40 -20
- package/Microsoft.AspNetCore.Routing.Template/internal/index.d.ts +25 -9
- package/Microsoft.AspNetCore.Routing.Tree/internal/index.d.ts +29 -13
- package/Microsoft.AspNetCore.Server.HttpSys/internal/index.d.ts +50 -18
- package/Microsoft.AspNetCore.Server.IIS/internal/index.d.ts +12 -4
- package/Microsoft.AspNetCore.Server.IISIntegration/internal/index.d.ts +17 -11
- package/Microsoft.AspNetCore.Server.Kestrel/internal/index.d.ts +16 -12
- package/Microsoft.AspNetCore.Server.Kestrel.Core/internal/index.d.ts +56 -36
- package/Microsoft.AspNetCore.Server.Kestrel.Core.Features/internal/index.d.ts +17 -3
- package/Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http/internal/index.d.ts +20 -8
- package/Microsoft.AspNetCore.Server.Kestrel.Https/internal/index.d.ts +23 -17
- package/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes/internal/index.d.ts +10 -6
- package/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic/internal/index.d.ts +6 -4
- package/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/internal/index.d.ts +29 -18
- package/Microsoft.AspNetCore.Session/internal/index.d.ts +32 -22
- package/Microsoft.AspNetCore.SignalR/internal/index.d.ts +191 -91
- package/Microsoft.AspNetCore.SignalR.Protocol/internal/index.d.ts +63 -25
- package/Microsoft.AspNetCore.StaticAssets/internal/index.d.ts +21 -11
- package/Microsoft.AspNetCore.StaticAssets.Infrastructure/internal/index.d.ts +4 -4
- package/Microsoft.AspNetCore.StaticFiles/internal/index.d.ts +38 -22
- package/Microsoft.AspNetCore.StaticFiles.Infrastructure/internal/index.d.ts +7 -3
- package/Microsoft.AspNetCore.WebSockets/internal/index.d.ts +14 -10
- package/Microsoft.AspNetCore.WebSockets.d.ts +3 -0
- package/Microsoft.AspNetCore.WebUtilities/internal/index.d.ts +119 -73
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +135 -123
- package/Microsoft.Extensions.Hosting/internal/index.d.ts +10 -8
- package/Microsoft.Extensions.Hosting.d.ts +3 -0
- package/Microsoft.JSInterop/internal/index.d.ts +95 -52
- package/Microsoft.JSInterop.Implementation/internal/index.d.ts +40 -26
- package/Microsoft.JSInterop.Infrastructure/internal/index.d.ts +10 -2
- package/Microsoft.Net.Http.Headers/internal/index.d.ts +92 -60
- package/System.Formats.Cbor/internal/index.d.ts +29 -21
- package/System.Security.Claims/internal/index.d.ts +3 -3
- package/System.Security.Claims.d.ts +3 -0
- package/System.Threading.RateLimiting/internal/index.d.ts +84 -29
- package/__internal/extensions/index.d.ts +1776 -1190
- package/package.json +4 -4
|
@@ -41,24 +41,24 @@ import type { HtmlHelperOptions, IAntiforgeryPolicy, IKeepTempDataResult, ITempD
|
|
|
41
41
|
import type { RouteData, RouteValueDictionary } from "../../Microsoft.AspNetCore.Routing/internal/index.js";
|
|
42
42
|
import type { IMvcBuilder } from "../../Microsoft.Extensions.DependencyInjection/internal/index.js";
|
|
43
43
|
import type { EntityTagHeaderValue, MediaTypeHeaderValue } from "../../Microsoft.Net.Http.Headers/internal/index.js";
|
|
44
|
-
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic.js";
|
|
45
|
-
import type {
|
|
46
|
-
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections.js";
|
|
47
|
-
import type { ICollection, IDictionary, IEnumerable } from "@tsonic/dotnet/System.Collections.js";
|
|
48
|
-
import * as System_ComponentModel_DataAnnotations_Internal from "@tsonic/dotnet/System.ComponentModel.DataAnnotations.js";
|
|
49
|
-
import type { ValidationAttribute } from "@tsonic/dotnet/System.ComponentModel.DataAnnotations.js";
|
|
50
|
-
import type { Stream } from "@tsonic/dotnet/System.IO.js";
|
|
51
|
-
import
|
|
52
|
-
import
|
|
53
|
-
import type {
|
|
54
|
-
import
|
|
55
|
-
import type {
|
|
56
|
-
import type {
|
|
57
|
-
import type {
|
|
58
|
-
import type {
|
|
59
|
-
import
|
|
60
|
-
import type {
|
|
61
|
-
import type { IFileProvider } from "@tsonic/microsoft-extensions/Microsoft.Extensions.FileProviders.js";
|
|
44
|
+
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
45
|
+
import type { Dictionary_2, ICollection_1, IDictionary_2, IEnumerable_1, IList_1, IReadOnlyCollection_1, IReadOnlyDictionary_2, IReadOnlyList_1, KeyValuePair_2 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
46
|
+
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
47
|
+
import type { ICollection, IDictionary, IEnumerable } from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
48
|
+
import * as System_ComponentModel_DataAnnotations_Internal from "@tsonic/dotnet/System.ComponentModel.DataAnnotations/internal/index.js";
|
|
49
|
+
import type { ValidationAttribute } from "@tsonic/dotnet/System.ComponentModel.DataAnnotations/internal/index.js";
|
|
50
|
+
import type { Stream } from "@tsonic/dotnet/System.IO/internal/index.js";
|
|
51
|
+
import type { Expression_1 } from "@tsonic/dotnet/System.Linq.Expressions/internal/index.js";
|
|
52
|
+
import * as System_Runtime_Serialization_Internal from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
53
|
+
import type { IDeserializationCallback, ISerializable } from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
54
|
+
import type { ClaimsPrincipal } from "@tsonic/dotnet/System.Security.Claims/internal/index.js";
|
|
55
|
+
import type { IPrincipal } from "@tsonic/dotnet/System.Security.Principal/internal/index.js";
|
|
56
|
+
import type { JsonSerializerOptions } from "@tsonic/dotnet/System.Text.Json/internal/index.js";
|
|
57
|
+
import type { Encoding } from "@tsonic/dotnet/System.Text/internal/index.js";
|
|
58
|
+
import type { Task, Task_1 } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
59
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
60
|
+
import type { Attribute, Boolean as ClrBoolean, Byte, DateTimeOffset, Enum, Func_2, IComparable, IConvertible, IDisposable, IFormattable, Int32, Int64, IServiceProvider, ISpanFormattable, Nullable_1, Object as ClrObject, String as ClrString, Type, Uri, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
61
|
+
import type { IFileProvider } from "@tsonic/microsoft-extensions/Microsoft.Extensions.FileProviders/internal/index.js";
|
|
62
62
|
|
|
63
63
|
export enum CompatibilityVersion {
|
|
64
64
|
Version_2_0 = 0,
|
|
@@ -77,6 +77,8 @@ export enum ResponseCacheLocation {
|
|
|
77
77
|
|
|
78
78
|
|
|
79
79
|
export interface IActionResult$instance {
|
|
80
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
81
|
+
|
|
80
82
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
81
83
|
}
|
|
82
84
|
|
|
@@ -84,6 +86,8 @@ export interface IActionResult$instance {
|
|
|
84
86
|
export type IActionResult = IActionResult$instance;
|
|
85
87
|
|
|
86
88
|
export interface IDesignTimeMvcBuilderConfiguration$instance {
|
|
89
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IDesignTimeMvcBuilderConfiguration: never;
|
|
90
|
+
|
|
87
91
|
ConfigureMvc(builder: IMvcBuilder): void;
|
|
88
92
|
}
|
|
89
93
|
|
|
@@ -91,6 +95,8 @@ export interface IDesignTimeMvcBuilderConfiguration$instance {
|
|
|
91
95
|
export type IDesignTimeMvcBuilderConfiguration = IDesignTimeMvcBuilderConfiguration$instance;
|
|
92
96
|
|
|
93
97
|
export interface IRequestFormLimitsPolicy$instance extends IFilterMetadata {
|
|
98
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IRequestFormLimitsPolicy: never;
|
|
99
|
+
|
|
94
100
|
}
|
|
95
101
|
|
|
96
102
|
|
|
@@ -99,6 +105,8 @@ export interface IRequestFormLimitsPolicy$instance extends Microsoft_AspNetCore_
|
|
|
99
105
|
export type IRequestFormLimitsPolicy = IRequestFormLimitsPolicy$instance;
|
|
100
106
|
|
|
101
107
|
export interface IRequestSizePolicy$instance extends IFilterMetadata {
|
|
108
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IRequestSizePolicy: never;
|
|
109
|
+
|
|
102
110
|
}
|
|
103
111
|
|
|
104
112
|
|
|
@@ -107,6 +115,8 @@ export interface IRequestSizePolicy$instance extends Microsoft_AspNetCore_Mvc_Fi
|
|
|
107
115
|
export type IRequestSizePolicy = IRequestSizePolicy$instance;
|
|
108
116
|
|
|
109
117
|
export interface IUrlHelper$instance {
|
|
118
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IUrlHelper: never;
|
|
119
|
+
|
|
110
120
|
readonly ActionContext: ActionContext;
|
|
111
121
|
Action(actionContext: UrlActionContext): string | undefined;
|
|
112
122
|
Content(contentPath: string): string | undefined;
|
|
@@ -119,14 +129,18 @@ export interface IUrlHelper$instance {
|
|
|
119
129
|
export type IUrlHelper = IUrlHelper$instance;
|
|
120
130
|
|
|
121
131
|
export interface IViewComponentHelper$instance {
|
|
122
|
-
|
|
123
|
-
|
|
132
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IViewComponentHelper: never;
|
|
133
|
+
|
|
134
|
+
InvokeAsync(name: string, arguments: unknown): Task_1<IHtmlContent>;
|
|
135
|
+
InvokeAsync(componentType: Type, arguments: unknown): Task_1<IHtmlContent>;
|
|
124
136
|
}
|
|
125
137
|
|
|
126
138
|
|
|
127
139
|
export type IViewComponentHelper = IViewComponentHelper$instance;
|
|
128
140
|
|
|
129
141
|
export interface IViewComponentResult$instance {
|
|
142
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IViewComponentResult: never;
|
|
143
|
+
|
|
130
144
|
Execute(context: ViewComponentContext): void;
|
|
131
145
|
ExecuteAsync(context: ViewComponentContext): Task;
|
|
132
146
|
}
|
|
@@ -135,6 +149,11 @@ export interface IViewComponentResult$instance {
|
|
|
135
149
|
export type IViewComponentResult = IViewComponentResult$instance;
|
|
136
150
|
|
|
137
151
|
export interface AcceptedAtActionResult$instance extends ObjectResult$instance {
|
|
152
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_AcceptedAtActionResult: never;
|
|
153
|
+
|
|
154
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
155
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
156
|
+
|
|
138
157
|
get ActionName(): string | undefined;
|
|
139
158
|
set ActionName(value: string | undefined);
|
|
140
159
|
get ControllerName(): string | undefined;
|
|
@@ -162,6 +181,11 @@ export type AcceptedAtActionResult = AcceptedAtActionResult$instance & __Accepte
|
|
|
162
181
|
|
|
163
182
|
|
|
164
183
|
export interface AcceptedAtRouteResult$instance extends ObjectResult$instance {
|
|
184
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_AcceptedAtRouteResult: never;
|
|
185
|
+
|
|
186
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
187
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
188
|
+
|
|
165
189
|
get RouteName(): string | undefined;
|
|
166
190
|
set RouteName(value: string | undefined);
|
|
167
191
|
get RouteValues(): RouteValueDictionary | undefined;
|
|
@@ -188,6 +212,11 @@ export type AcceptedAtRouteResult = AcceptedAtRouteResult$instance & __AcceptedA
|
|
|
188
212
|
|
|
189
213
|
|
|
190
214
|
export interface AcceptedResult$instance extends ObjectResult$instance {
|
|
215
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_AcceptedResult: never;
|
|
216
|
+
|
|
217
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
218
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
219
|
+
|
|
191
220
|
get Location(): string | undefined;
|
|
192
221
|
set Location(value: string | undefined);
|
|
193
222
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
@@ -210,8 +239,13 @@ export interface __AcceptedResult$views {
|
|
|
210
239
|
export type AcceptedResult = AcceptedResult$instance & __AcceptedResult$views;
|
|
211
240
|
|
|
212
241
|
|
|
213
|
-
export interface AcceptVerbsAttribute$instance extends Attribute {
|
|
214
|
-
readonly
|
|
242
|
+
export interface AcceptVerbsAttribute$instance extends Attribute, Microsoft_AspNetCore_Mvc_Routing_Internal.IActionHttpMethodProvider$instance {
|
|
243
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_AcceptVerbsAttribute: never;
|
|
244
|
+
|
|
245
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IActionHttpMethodProvider: never;
|
|
246
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IRouteTemplateProvider: never;
|
|
247
|
+
|
|
248
|
+
readonly HttpMethods: IEnumerable_1<System_Internal.String>;
|
|
215
249
|
get Name(): string | undefined;
|
|
216
250
|
set Name(value: string | undefined);
|
|
217
251
|
Order: int;
|
|
@@ -231,12 +265,12 @@ export interface __AcceptVerbsAttribute$views {
|
|
|
231
265
|
As_IRouteTemplateProvider(): Microsoft_AspNetCore_Mvc_Routing_Internal.IRouteTemplateProvider$instance;
|
|
232
266
|
}
|
|
233
267
|
|
|
234
|
-
export interface AcceptVerbsAttribute$instance extends Microsoft_AspNetCore_Mvc_Routing_Internal.IActionHttpMethodProvider$instance {}
|
|
235
|
-
|
|
236
268
|
export type AcceptVerbsAttribute = AcceptVerbsAttribute$instance & __AcceptVerbsAttribute$views;
|
|
237
269
|
|
|
238
270
|
|
|
239
271
|
export interface ActionContext$instance {
|
|
272
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ActionContext: never;
|
|
273
|
+
|
|
240
274
|
ActionDescriptor: ActionDescriptor | CompiledPageActionDescriptor;
|
|
241
275
|
HttpContext: HttpContext;
|
|
242
276
|
readonly ModelState: ModelStateDictionary;
|
|
@@ -255,6 +289,8 @@ export const ActionContext: {
|
|
|
255
289
|
export type ActionContext = ActionContext$instance;
|
|
256
290
|
|
|
257
291
|
export interface ActionContextAttribute$instance extends Attribute {
|
|
292
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ActionContextAttribute: never;
|
|
293
|
+
|
|
258
294
|
}
|
|
259
295
|
|
|
260
296
|
|
|
@@ -266,6 +302,8 @@ export const ActionContextAttribute: {
|
|
|
266
302
|
export type ActionContextAttribute = ActionContextAttribute$instance;
|
|
267
303
|
|
|
268
304
|
export interface ActionNameAttribute$instance extends Attribute {
|
|
305
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ActionNameAttribute: never;
|
|
306
|
+
|
|
269
307
|
readonly Name: string;
|
|
270
308
|
}
|
|
271
309
|
|
|
@@ -277,7 +315,11 @@ export const ActionNameAttribute: {
|
|
|
277
315
|
|
|
278
316
|
export type ActionNameAttribute = ActionNameAttribute$instance;
|
|
279
317
|
|
|
280
|
-
export interface ActionResult$instance {
|
|
318
|
+
export interface ActionResult$instance extends IActionResult$instance {
|
|
319
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ActionResult: never;
|
|
320
|
+
|
|
321
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
322
|
+
|
|
281
323
|
ExecuteResult(context: ActionContext): void;
|
|
282
324
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
283
325
|
}
|
|
@@ -291,12 +333,14 @@ export interface __ActionResult$views {
|
|
|
291
333
|
As_IActionResult(): IActionResult$instance;
|
|
292
334
|
}
|
|
293
335
|
|
|
294
|
-
export interface ActionResult$instance extends IActionResult$instance {}
|
|
295
|
-
|
|
296
336
|
export type ActionResult = ActionResult$instance & __ActionResult$views;
|
|
297
337
|
|
|
298
338
|
|
|
299
|
-
export interface ActionResult_1$instance<TValue> {
|
|
339
|
+
export interface ActionResult_1$instance<TValue> extends Microsoft_AspNetCore_Mvc_Infrastructure_Internal.IConvertToActionResult$instance {
|
|
340
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ActionResult_1: never;
|
|
341
|
+
|
|
342
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IConvertToActionResult: never;
|
|
343
|
+
|
|
300
344
|
readonly Result: ActionResult | undefined;
|
|
301
345
|
readonly Value: TValue | undefined;
|
|
302
346
|
}
|
|
@@ -312,12 +356,17 @@ export interface __ActionResult_1$views<TValue> {
|
|
|
312
356
|
As_IConvertToActionResult(): Microsoft_AspNetCore_Mvc_Infrastructure_Internal.IConvertToActionResult$instance;
|
|
313
357
|
}
|
|
314
358
|
|
|
315
|
-
export interface ActionResult_1$instance<TValue> extends Microsoft_AspNetCore_Mvc_Infrastructure_Internal.IConvertToActionResult$instance {}
|
|
316
|
-
|
|
317
359
|
export type ActionResult_1<TValue> = ActionResult_1$instance<TValue> & __ActionResult_1$views<TValue>;
|
|
318
360
|
|
|
319
361
|
|
|
320
362
|
export interface AntiforgeryValidationFailedResult$instance extends BadRequestResult$instance, IAntiforgeryValidationFailedResult {
|
|
363
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_AntiforgeryValidationFailedResult: never;
|
|
364
|
+
|
|
365
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Core_Infrastructure_IAntiforgeryValidationFailedResult: never;
|
|
366
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
367
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IClientErrorActionResult: never;
|
|
368
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
369
|
+
|
|
321
370
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
322
371
|
}
|
|
323
372
|
|
|
@@ -336,9 +385,14 @@ export type AntiforgeryValidationFailedResult = AntiforgeryValidationFailedResul
|
|
|
336
385
|
|
|
337
386
|
|
|
338
387
|
export interface ApiBehaviorOptions$instance {
|
|
339
|
-
readonly
|
|
388
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApiBehaviorOptions: never;
|
|
389
|
+
|
|
390
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
391
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
392
|
+
|
|
393
|
+
readonly ClientErrorMapping: IDictionary_2<System_Internal.Int32, ClientErrorData>;
|
|
340
394
|
DisableImplicitFromServicesParameters: boolean;
|
|
341
|
-
InvalidModelStateResponseFactory:
|
|
395
|
+
InvalidModelStateResponseFactory: Func_2<ActionContext, IActionResult>;
|
|
342
396
|
SuppressConsumesConstraintForFormFileParameters: boolean;
|
|
343
397
|
SuppressInferBindingSourcesForParameters: boolean;
|
|
344
398
|
SuppressMapClientErrors: boolean;
|
|
@@ -354,6 +408,12 @@ export const ApiBehaviorOptions: {
|
|
|
354
408
|
export type ApiBehaviorOptions = ApiBehaviorOptions$instance;
|
|
355
409
|
|
|
356
410
|
export interface ApiControllerAttribute$instance extends ControllerAttribute, IApiBehaviorMetadata, IFilterMetadata, IDisableCookieRedirectMetadata {
|
|
411
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApiControllerAttribute: never;
|
|
412
|
+
|
|
413
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IDisableCookieRedirectMetadata: never;
|
|
414
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
415
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IApiBehaviorMetadata: never;
|
|
416
|
+
|
|
357
417
|
}
|
|
358
418
|
|
|
359
419
|
|
|
@@ -365,6 +425,8 @@ export const ApiControllerAttribute: {
|
|
|
365
425
|
export type ApiControllerAttribute = ApiControllerAttribute$instance;
|
|
366
426
|
|
|
367
427
|
export interface ApiConventionMethodAttribute$instance extends Attribute {
|
|
428
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApiConventionMethodAttribute: never;
|
|
429
|
+
|
|
368
430
|
readonly ConventionType: Type;
|
|
369
431
|
}
|
|
370
432
|
|
|
@@ -377,6 +439,8 @@ export const ApiConventionMethodAttribute: {
|
|
|
377
439
|
export type ApiConventionMethodAttribute = ApiConventionMethodAttribute$instance;
|
|
378
440
|
|
|
379
441
|
export interface ApiConventionTypeAttribute$instance extends Attribute {
|
|
442
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApiConventionTypeAttribute: never;
|
|
443
|
+
|
|
380
444
|
readonly ConventionType: Type;
|
|
381
445
|
}
|
|
382
446
|
|
|
@@ -389,6 +453,8 @@ export const ApiConventionTypeAttribute: {
|
|
|
389
453
|
export type ApiConventionTypeAttribute = ApiConventionTypeAttribute$instance;
|
|
390
454
|
|
|
391
455
|
export interface ApiDescriptionActionData$instance {
|
|
456
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApiDescriptionActionData: never;
|
|
457
|
+
|
|
392
458
|
get GroupName(): string | undefined;
|
|
393
459
|
set GroupName(value: string | undefined);
|
|
394
460
|
}
|
|
@@ -402,6 +468,11 @@ export const ApiDescriptionActionData: {
|
|
|
402
468
|
export type ApiDescriptionActionData = ApiDescriptionActionData$instance;
|
|
403
469
|
|
|
404
470
|
export interface ApiExplorerSettingsAttribute$instance extends Attribute {
|
|
471
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApiExplorerSettingsAttribute: never;
|
|
472
|
+
|
|
473
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiDescriptionGroupNameProvider: never;
|
|
474
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiDescriptionVisibilityProvider: never;
|
|
475
|
+
|
|
405
476
|
get GroupName(): string | undefined;
|
|
406
477
|
set GroupName(value: string | undefined);
|
|
407
478
|
IgnoreApi: boolean;
|
|
@@ -421,7 +492,11 @@ export interface __ApiExplorerSettingsAttribute$views {
|
|
|
421
492
|
export type ApiExplorerSettingsAttribute = ApiExplorerSettingsAttribute$instance & __ApiExplorerSettingsAttribute$views;
|
|
422
493
|
|
|
423
494
|
|
|
424
|
-
export interface AreaAttribute$instance extends RouteValueAttribute {
|
|
495
|
+
export interface AreaAttribute$instance extends RouteValueAttribute, Microsoft_AspNetCore_Mvc_Routing_Internal.IRouteValueProvider$instance {
|
|
496
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_AreaAttribute: never;
|
|
497
|
+
|
|
498
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IRouteValueProvider: never;
|
|
499
|
+
|
|
425
500
|
}
|
|
426
501
|
|
|
427
502
|
|
|
@@ -434,12 +509,16 @@ export interface __AreaAttribute$views {
|
|
|
434
509
|
As_IRouteValueProvider(): Microsoft_AspNetCore_Mvc_Routing_Internal.IRouteValueProvider$instance;
|
|
435
510
|
}
|
|
436
511
|
|
|
437
|
-
export interface AreaAttribute$instance extends Microsoft_AspNetCore_Mvc_Routing_Internal.IRouteValueProvider$instance {}
|
|
438
|
-
|
|
439
512
|
export type AreaAttribute = AreaAttribute$instance & __AreaAttribute$views;
|
|
440
513
|
|
|
441
514
|
|
|
442
|
-
export interface AutoValidateAntiforgeryTokenAttribute$instance extends Attribute, IFilterMetadata {
|
|
515
|
+
export interface AutoValidateAntiforgeryTokenAttribute$instance extends Attribute, IFilterMetadata, Microsoft_AspNetCore_Mvc_Filters_Internal.IFilterFactory$instance {
|
|
516
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_AutoValidateAntiforgeryTokenAttribute: never;
|
|
517
|
+
|
|
518
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
519
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
520
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
521
|
+
|
|
443
522
|
readonly IsReusable: boolean;
|
|
444
523
|
Order: int;
|
|
445
524
|
CreateInstance(serviceProvider: IServiceProvider): IFilterMetadata;
|
|
@@ -456,12 +535,15 @@ export interface __AutoValidateAntiforgeryTokenAttribute$views {
|
|
|
456
535
|
As_IOrderedFilter(): Microsoft_AspNetCore_Mvc_Filters_Internal.IOrderedFilter$instance;
|
|
457
536
|
}
|
|
458
537
|
|
|
459
|
-
export interface AutoValidateAntiforgeryTokenAttribute$instance extends Microsoft_AspNetCore_Mvc_Filters_Internal.IFilterFactory$instance {}
|
|
460
|
-
|
|
461
538
|
export type AutoValidateAntiforgeryTokenAttribute = AutoValidateAntiforgeryTokenAttribute$instance & __AutoValidateAntiforgeryTokenAttribute$views;
|
|
462
539
|
|
|
463
540
|
|
|
464
541
|
export interface BadRequestObjectResult$instance extends ObjectResult$instance {
|
|
542
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_BadRequestObjectResult: never;
|
|
543
|
+
|
|
544
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
545
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
546
|
+
|
|
465
547
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
466
548
|
}
|
|
467
549
|
|
|
@@ -481,6 +563,12 @@ export type BadRequestObjectResult = BadRequestObjectResult$instance & __BadRequ
|
|
|
481
563
|
|
|
482
564
|
|
|
483
565
|
export interface BadRequestResult$instance extends StatusCodeResult$instance {
|
|
566
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_BadRequestResult: never;
|
|
567
|
+
|
|
568
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
569
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IClientErrorActionResult: never;
|
|
570
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
571
|
+
|
|
484
572
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
485
573
|
}
|
|
486
574
|
|
|
@@ -498,11 +586,16 @@ export interface __BadRequestResult$views {
|
|
|
498
586
|
export type BadRequestResult = BadRequestResult$instance & __BadRequestResult$views;
|
|
499
587
|
|
|
500
588
|
|
|
501
|
-
export interface BindAttribute$instance extends Attribute {
|
|
589
|
+
export interface BindAttribute$instance extends Attribute, Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IModelNameProvider$instance, Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IPropertyFilterProvider$instance {
|
|
590
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_BindAttribute: never;
|
|
591
|
+
|
|
592
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IModelNameProvider: never;
|
|
593
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IPropertyFilterProvider: never;
|
|
594
|
+
|
|
502
595
|
readonly Include: string[];
|
|
503
596
|
get Prefix(): string | undefined;
|
|
504
597
|
set Prefix(value: string | undefined);
|
|
505
|
-
readonly PropertyFilter:
|
|
598
|
+
readonly PropertyFilter: Func_2<ModelMetadata, System_Internal.Boolean>;
|
|
506
599
|
}
|
|
507
600
|
|
|
508
601
|
|
|
@@ -516,12 +609,12 @@ export interface __BindAttribute$views {
|
|
|
516
609
|
As_IPropertyFilterProvider(): Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IPropertyFilterProvider$instance;
|
|
517
610
|
}
|
|
518
611
|
|
|
519
|
-
export interface BindAttribute$instance extends Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IModelNameProvider$instance, Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IPropertyFilterProvider$instance {}
|
|
520
|
-
|
|
521
612
|
export type BindAttribute = BindAttribute$instance & __BindAttribute$views;
|
|
522
613
|
|
|
523
614
|
|
|
524
615
|
export interface BindPropertiesAttribute$instance extends Attribute {
|
|
616
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_BindPropertiesAttribute: never;
|
|
617
|
+
|
|
525
618
|
SupportsGet: boolean;
|
|
526
619
|
}
|
|
527
620
|
|
|
@@ -533,7 +626,14 @@ export const BindPropertiesAttribute: {
|
|
|
533
626
|
|
|
534
627
|
export type BindPropertiesAttribute = BindPropertiesAttribute$instance;
|
|
535
628
|
|
|
536
|
-
export interface BindPropertyAttribute$instance extends Attribute {
|
|
629
|
+
export interface BindPropertyAttribute$instance extends Attribute, Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IRequestPredicateProvider$instance {
|
|
630
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_BindPropertyAttribute: never;
|
|
631
|
+
|
|
632
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBinderTypeProviderMetadata: never;
|
|
633
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBindingSourceMetadata: never;
|
|
634
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IModelNameProvider: never;
|
|
635
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IRequestPredicateProvider: never;
|
|
636
|
+
|
|
537
637
|
get BinderType(): Type | undefined;
|
|
538
638
|
set BinderType(value: Type | undefined);
|
|
539
639
|
BindingSource: BindingSource;
|
|
@@ -555,15 +655,15 @@ export interface __BindPropertyAttribute$views {
|
|
|
555
655
|
As_IRequestPredicateProvider(): Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IRequestPredicateProvider$instance;
|
|
556
656
|
}
|
|
557
657
|
|
|
558
|
-
export interface BindPropertyAttribute$instance extends Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IRequestPredicateProvider$instance {}
|
|
559
|
-
|
|
560
658
|
export type BindPropertyAttribute = BindPropertyAttribute$instance & __BindPropertyAttribute$views;
|
|
561
659
|
|
|
562
660
|
|
|
563
661
|
export interface CacheProfile$instance {
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
662
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_CacheProfile: never;
|
|
663
|
+
|
|
664
|
+
Duration: Nullable_1<System_Internal.Int32>;
|
|
665
|
+
Location: Nullable_1<ResponseCacheLocation>;
|
|
666
|
+
NoStore: Nullable_1<System_Internal.Boolean>;
|
|
567
667
|
get VaryByHeader(): string | undefined;
|
|
568
668
|
set VaryByHeader(value: string | undefined);
|
|
569
669
|
get VaryByQueryKeys(): string[] | undefined;
|
|
@@ -579,7 +679,11 @@ export const CacheProfile: {
|
|
|
579
679
|
export type CacheProfile = CacheProfile$instance;
|
|
580
680
|
|
|
581
681
|
export interface ChallengeResult$instance extends ActionResult$instance {
|
|
582
|
-
|
|
682
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ChallengeResult: never;
|
|
683
|
+
|
|
684
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
685
|
+
|
|
686
|
+
AuthenticationSchemes: IList_1<System_Internal.String>;
|
|
583
687
|
get Properties(): AuthenticationProperties | undefined;
|
|
584
688
|
set Properties(value: AuthenticationProperties | undefined);
|
|
585
689
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
@@ -589,10 +693,10 @@ export interface ChallengeResult$instance extends ActionResult$instance {
|
|
|
589
693
|
export const ChallengeResult: {
|
|
590
694
|
new(): ChallengeResult;
|
|
591
695
|
new(authenticationScheme: string): ChallengeResult;
|
|
592
|
-
new(authenticationSchemes:
|
|
696
|
+
new(authenticationSchemes: IList_1<System_Internal.String>): ChallengeResult;
|
|
593
697
|
new(properties: AuthenticationProperties): ChallengeResult;
|
|
594
698
|
new(authenticationScheme: string, properties: AuthenticationProperties): ChallengeResult;
|
|
595
|
-
new(authenticationSchemes:
|
|
699
|
+
new(authenticationSchemes: IList_1<System_Internal.String>, properties: AuthenticationProperties): ChallengeResult;
|
|
596
700
|
};
|
|
597
701
|
|
|
598
702
|
|
|
@@ -604,6 +708,8 @@ export type ChallengeResult = ChallengeResult$instance & __ChallengeResult$views
|
|
|
604
708
|
|
|
605
709
|
|
|
606
710
|
export interface ClientErrorData$instance {
|
|
711
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ClientErrorData: never;
|
|
712
|
+
|
|
607
713
|
get Link(): string | undefined;
|
|
608
714
|
set Link(value: string | undefined);
|
|
609
715
|
get Title(): string | undefined;
|
|
@@ -619,6 +725,11 @@ export const ClientErrorData: {
|
|
|
619
725
|
export type ClientErrorData = ClientErrorData$instance;
|
|
620
726
|
|
|
621
727
|
export interface ConflictObjectResult$instance extends ObjectResult$instance {
|
|
728
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ConflictObjectResult: never;
|
|
729
|
+
|
|
730
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
731
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
732
|
+
|
|
622
733
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
623
734
|
}
|
|
624
735
|
|
|
@@ -638,6 +749,12 @@ export type ConflictObjectResult = ConflictObjectResult$instance & __ConflictObj
|
|
|
638
749
|
|
|
639
750
|
|
|
640
751
|
export interface ConflictResult$instance extends StatusCodeResult$instance {
|
|
752
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ConflictResult: never;
|
|
753
|
+
|
|
754
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
755
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IClientErrorActionResult: never;
|
|
756
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
757
|
+
|
|
641
758
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
642
759
|
}
|
|
643
760
|
|
|
@@ -655,7 +772,17 @@ export interface __ConflictResult$views {
|
|
|
655
772
|
export type ConflictResult = ConflictResult$instance & __ConflictResult$views;
|
|
656
773
|
|
|
657
774
|
|
|
658
|
-
export interface ConsumesAttribute$instance extends Attribute, IFilterMetadata, IActionConstraintMetadata {
|
|
775
|
+
export interface ConsumesAttribute$instance extends Attribute, IFilterMetadata, IActionConstraintMetadata, Microsoft_AspNetCore_Mvc_ActionConstraints_Internal.IActionConstraint$instance, Microsoft_AspNetCore_Mvc_ApiExplorer_Internal.IApiRequestMetadataProvider$instance, Microsoft_AspNetCore_Mvc_Filters_Internal.IResourceFilter$instance {
|
|
776
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ConsumesAttribute: never;
|
|
777
|
+
|
|
778
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IAcceptsMetadata: never;
|
|
779
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ActionConstraints_IActionConstraint: never;
|
|
780
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ActionConstraints_IActionConstraintMetadata: never;
|
|
781
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ActionConstraints_IConsumesActionConstraint: never;
|
|
782
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiRequestMetadataProvider: never;
|
|
783
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
784
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IResourceFilter: never;
|
|
785
|
+
|
|
659
786
|
ContentTypes: MediaTypeCollection;
|
|
660
787
|
IsOptional: boolean;
|
|
661
788
|
Accept(context: ActionConstraintContext): boolean;
|
|
@@ -679,17 +806,20 @@ export interface __ConsumesAttribute$views {
|
|
|
679
806
|
As_IApiRequestMetadataProvider(): Microsoft_AspNetCore_Mvc_ApiExplorer_Internal.IApiRequestMetadataProvider$instance;
|
|
680
807
|
}
|
|
681
808
|
|
|
682
|
-
export interface ConsumesAttribute$instance extends Microsoft_AspNetCore_Mvc_ActionConstraints_Internal.IActionConstraint$instance, Microsoft_AspNetCore_Mvc_ApiExplorer_Internal.IApiRequestMetadataProvider$instance, Microsoft_AspNetCore_Mvc_Filters_Internal.IResourceFilter$instance {}
|
|
683
|
-
|
|
684
809
|
export type ConsumesAttribute = ConsumesAttribute$instance & __ConsumesAttribute$views;
|
|
685
810
|
|
|
686
811
|
|
|
687
812
|
export interface ContentResult$instance extends ActionResult$instance {
|
|
813
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ContentResult: never;
|
|
814
|
+
|
|
815
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
816
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
817
|
+
|
|
688
818
|
get Content(): string | undefined;
|
|
689
819
|
set Content(value: string | undefined);
|
|
690
820
|
get ContentType(): string | undefined;
|
|
691
821
|
set ContentType(value: string | undefined);
|
|
692
|
-
StatusCode:
|
|
822
|
+
StatusCode: Nullable_1<System_Internal.Int32>;
|
|
693
823
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
694
824
|
}
|
|
695
825
|
|
|
@@ -707,7 +837,14 @@ export interface __ContentResult$views {
|
|
|
707
837
|
export type ContentResult = ContentResult$instance & __ContentResult$views;
|
|
708
838
|
|
|
709
839
|
|
|
710
|
-
export interface Controller$instance extends ControllerBase, IFilterMetadata {
|
|
840
|
+
export interface Controller$instance extends ControllerBase, IFilterMetadata, Microsoft_AspNetCore_Mvc_Filters_Internal.IActionFilter$instance, Microsoft_AspNetCore_Mvc_Filters_Internal.IAsyncActionFilter$instance, System_Internal.IDisposable {
|
|
841
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Controller: never;
|
|
842
|
+
|
|
843
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IActionFilter: never;
|
|
844
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IAsyncActionFilter: never;
|
|
845
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
846
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
847
|
+
|
|
711
848
|
TempData: ITempDataDictionary;
|
|
712
849
|
readonly ViewBag: unknown;
|
|
713
850
|
ViewData: ViewDataDictionary;
|
|
@@ -742,12 +879,12 @@ export interface __Controller$views {
|
|
|
742
879
|
As_IAsyncActionFilter(): Microsoft_AspNetCore_Mvc_Filters_Internal.IAsyncActionFilter$instance;
|
|
743
880
|
}
|
|
744
881
|
|
|
745
|
-
export interface Controller$instance extends Microsoft_AspNetCore_Mvc_Filters_Internal.IActionFilter$instance, Microsoft_AspNetCore_Mvc_Filters_Internal.IAsyncActionFilter$instance {}
|
|
746
|
-
|
|
747
882
|
export type Controller = Controller$instance & __Controller$views;
|
|
748
883
|
|
|
749
884
|
|
|
750
885
|
export interface ControllerAttribute$instance extends Attribute {
|
|
886
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ControllerAttribute: never;
|
|
887
|
+
|
|
751
888
|
}
|
|
752
889
|
|
|
753
890
|
|
|
@@ -759,6 +896,8 @@ export const ControllerAttribute: {
|
|
|
759
896
|
export type ControllerAttribute = ControllerAttribute$instance;
|
|
760
897
|
|
|
761
898
|
export interface ControllerBase$instance {
|
|
899
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ControllerBase: never;
|
|
900
|
+
|
|
762
901
|
ControllerContext: ControllerContext;
|
|
763
902
|
readonly HttpContext: HttpContext;
|
|
764
903
|
MetadataProvider: IModelMetadataProvider;
|
|
@@ -815,26 +954,26 @@ export interface ControllerBase$instance {
|
|
|
815
954
|
File(fileContents: byte[], contentType: string, enableRangeProcessing: boolean): FileContentResult;
|
|
816
955
|
File(fileContents: byte[], contentType: string, fileDownloadName: string): FileContentResult;
|
|
817
956
|
File(fileContents: byte[], contentType: string, fileDownloadName: string, enableRangeProcessing: boolean): FileContentResult;
|
|
818
|
-
File(fileContents: byte[], contentType: string, lastModified:
|
|
819
|
-
File(fileContents: byte[], contentType: string, lastModified:
|
|
820
|
-
File(fileContents: byte[], contentType: string, fileDownloadName: string, lastModified:
|
|
821
|
-
File(fileContents: byte[], contentType: string, fileDownloadName: string, lastModified:
|
|
957
|
+
File(fileContents: byte[], contentType: string, lastModified: Nullable_1<DateTimeOffset>, entityTag: EntityTagHeaderValue): FileContentResult;
|
|
958
|
+
File(fileContents: byte[], contentType: string, lastModified: Nullable_1<DateTimeOffset>, entityTag: EntityTagHeaderValue, enableRangeProcessing: boolean): FileContentResult;
|
|
959
|
+
File(fileContents: byte[], contentType: string, fileDownloadName: string, lastModified: Nullable_1<DateTimeOffset>, entityTag: EntityTagHeaderValue): FileContentResult;
|
|
960
|
+
File(fileContents: byte[], contentType: string, fileDownloadName: string, lastModified: Nullable_1<DateTimeOffset>, entityTag: EntityTagHeaderValue, enableRangeProcessing: boolean): FileContentResult;
|
|
822
961
|
File(fileStream: Stream, contentType: string): FileStreamResult;
|
|
823
962
|
File(fileStream: Stream, contentType: string, enableRangeProcessing: boolean): FileStreamResult;
|
|
824
963
|
File(fileStream: Stream, contentType: string, fileDownloadName: string): FileStreamResult;
|
|
825
964
|
File(fileStream: Stream, contentType: string, fileDownloadName: string, enableRangeProcessing: boolean): FileStreamResult;
|
|
826
|
-
File(fileStream: Stream, contentType: string, lastModified:
|
|
827
|
-
File(fileStream: Stream, contentType: string, lastModified:
|
|
828
|
-
File(fileStream: Stream, contentType: string, fileDownloadName: string, lastModified:
|
|
829
|
-
File(fileStream: Stream, contentType: string, fileDownloadName: string, lastModified:
|
|
965
|
+
File(fileStream: Stream, contentType: string, lastModified: Nullable_1<DateTimeOffset>, entityTag: EntityTagHeaderValue): FileStreamResult;
|
|
966
|
+
File(fileStream: Stream, contentType: string, lastModified: Nullable_1<DateTimeOffset>, entityTag: EntityTagHeaderValue, enableRangeProcessing: boolean): FileStreamResult;
|
|
967
|
+
File(fileStream: Stream, contentType: string, fileDownloadName: string, lastModified: Nullable_1<DateTimeOffset>, entityTag: EntityTagHeaderValue): FileStreamResult;
|
|
968
|
+
File(fileStream: Stream, contentType: string, fileDownloadName: string, lastModified: Nullable_1<DateTimeOffset>, entityTag: EntityTagHeaderValue, enableRangeProcessing: boolean): FileStreamResult;
|
|
830
969
|
File(virtualPath: string, contentType: string): VirtualFileResult;
|
|
831
970
|
File(virtualPath: string, contentType: string, enableRangeProcessing: boolean): VirtualFileResult;
|
|
832
971
|
File(virtualPath: string, contentType: string, fileDownloadName: string): VirtualFileResult;
|
|
833
972
|
File(virtualPath: string, contentType: string, fileDownloadName: string, enableRangeProcessing: boolean): VirtualFileResult;
|
|
834
|
-
File(virtualPath: string, contentType: string, lastModified:
|
|
835
|
-
File(virtualPath: string, contentType: string, lastModified:
|
|
836
|
-
File(virtualPath: string, contentType: string, fileDownloadName: string, lastModified:
|
|
837
|
-
File(virtualPath: string, contentType: string, fileDownloadName: string, lastModified:
|
|
973
|
+
File(virtualPath: string, contentType: string, lastModified: Nullable_1<DateTimeOffset>, entityTag: EntityTagHeaderValue): VirtualFileResult;
|
|
974
|
+
File(virtualPath: string, contentType: string, lastModified: Nullable_1<DateTimeOffset>, entityTag: EntityTagHeaderValue, enableRangeProcessing: boolean): VirtualFileResult;
|
|
975
|
+
File(virtualPath: string, contentType: string, fileDownloadName: string, lastModified: Nullable_1<DateTimeOffset>, entityTag: EntityTagHeaderValue): VirtualFileResult;
|
|
976
|
+
File(virtualPath: string, contentType: string, fileDownloadName: string, lastModified: Nullable_1<DateTimeOffset>, entityTag: EntityTagHeaderValue, enableRangeProcessing: boolean): VirtualFileResult;
|
|
838
977
|
Forbid(): ForbidResult;
|
|
839
978
|
Forbid(...authenticationSchemes: string[]): ForbidResult;
|
|
840
979
|
Forbid(properties: AuthenticationProperties): ForbidResult;
|
|
@@ -852,12 +991,12 @@ export interface ControllerBase$instance {
|
|
|
852
991
|
PhysicalFile(physicalPath: string, contentType: string, enableRangeProcessing: boolean): PhysicalFileResult;
|
|
853
992
|
PhysicalFile(physicalPath: string, contentType: string, fileDownloadName: string): PhysicalFileResult;
|
|
854
993
|
PhysicalFile(physicalPath: string, contentType: string, fileDownloadName: string, enableRangeProcessing: boolean): PhysicalFileResult;
|
|
855
|
-
PhysicalFile(physicalPath: string, contentType: string, lastModified:
|
|
856
|
-
PhysicalFile(physicalPath: string, contentType: string, lastModified:
|
|
857
|
-
PhysicalFile(physicalPath: string, contentType: string, fileDownloadName: string, lastModified:
|
|
858
|
-
PhysicalFile(physicalPath: string, contentType: string, fileDownloadName: string, lastModified:
|
|
859
|
-
Problem(detail: string, instance: string, statusCode:
|
|
860
|
-
Problem(detail?: string, instance?: string, statusCode?:
|
|
994
|
+
PhysicalFile(physicalPath: string, contentType: string, lastModified: Nullable_1<DateTimeOffset>, entityTag: EntityTagHeaderValue): PhysicalFileResult;
|
|
995
|
+
PhysicalFile(physicalPath: string, contentType: string, lastModified: Nullable_1<DateTimeOffset>, entityTag: EntityTagHeaderValue, enableRangeProcessing: boolean): PhysicalFileResult;
|
|
996
|
+
PhysicalFile(physicalPath: string, contentType: string, fileDownloadName: string, lastModified: Nullable_1<DateTimeOffset>, entityTag: EntityTagHeaderValue): PhysicalFileResult;
|
|
997
|
+
PhysicalFile(physicalPath: string, contentType: string, fileDownloadName: string, lastModified: Nullable_1<DateTimeOffset>, entityTag: EntityTagHeaderValue, enableRangeProcessing: boolean): PhysicalFileResult;
|
|
998
|
+
Problem(detail: string, instance: string, statusCode: Nullable_1<System_Internal.Int32>, title: string, type: string): ObjectResult;
|
|
999
|
+
Problem(detail?: string, instance?: string, statusCode?: Nullable_1<System_Internal.Int32>, title?: string, type?: string, extensions?: IDictionary_2<System_Internal.String, unknown>): ObjectResult;
|
|
861
1000
|
Redirect(url: string): RedirectResult;
|
|
862
1001
|
RedirectPermanent(url: string): RedirectResult;
|
|
863
1002
|
RedirectPermanentPreserveMethod(url: string): RedirectResult;
|
|
@@ -912,15 +1051,15 @@ export interface ControllerBase$instance {
|
|
|
912
1051
|
SignOut(properties: AuthenticationProperties, ...authenticationSchemes: string[]): SignOutResult;
|
|
913
1052
|
StatusCode(statusCode: int): StatusCodeResult;
|
|
914
1053
|
StatusCode(statusCode: int, value: unknown): ObjectResult;
|
|
915
|
-
TryUpdateModelAsync<TModel>(model: TModel):
|
|
916
|
-
TryUpdateModelAsync<TModel>(model: TModel, prefix: string):
|
|
917
|
-
TryUpdateModelAsync<TModel>(model: TModel, prefix: string, valueProvider: IValueProvider):
|
|
918
|
-
TryUpdateModelAsync<TModel>(model: TModel, prefix: string, ...includeExpressions:
|
|
919
|
-
TryUpdateModelAsync<TModel>(model: TModel, prefix: string, propertyFilter:
|
|
920
|
-
TryUpdateModelAsync<TModel>(model: TModel, prefix: string, valueProvider: IValueProvider, ...includeExpressions:
|
|
921
|
-
TryUpdateModelAsync<TModel>(model: TModel, prefix: string, valueProvider: IValueProvider, propertyFilter:
|
|
922
|
-
TryUpdateModelAsync(model: unknown, modelType: Type, prefix: string):
|
|
923
|
-
TryUpdateModelAsync(model: unknown, modelType: Type, prefix: string, valueProvider: IValueProvider, propertyFilter:
|
|
1054
|
+
TryUpdateModelAsync<TModel>(model: TModel): Task_1<System_Internal.Boolean>;
|
|
1055
|
+
TryUpdateModelAsync<TModel>(model: TModel, prefix: string): Task_1<System_Internal.Boolean>;
|
|
1056
|
+
TryUpdateModelAsync<TModel>(model: TModel, prefix: string, valueProvider: IValueProvider): Task_1<System_Internal.Boolean>;
|
|
1057
|
+
TryUpdateModelAsync<TModel>(model: TModel, prefix: string, ...includeExpressions: Expression_1<Func_2<TModel, unknown>>[]): Task_1<System_Internal.Boolean>;
|
|
1058
|
+
TryUpdateModelAsync<TModel>(model: TModel, prefix: string, propertyFilter: Func_2<ModelMetadata, System_Internal.Boolean>): Task_1<System_Internal.Boolean>;
|
|
1059
|
+
TryUpdateModelAsync<TModel>(model: TModel, prefix: string, valueProvider: IValueProvider, ...includeExpressions: Expression_1<Func_2<TModel, unknown>>[]): Task_1<System_Internal.Boolean>;
|
|
1060
|
+
TryUpdateModelAsync<TModel>(model: TModel, prefix: string, valueProvider: IValueProvider, propertyFilter: Func_2<ModelMetadata, System_Internal.Boolean>): Task_1<System_Internal.Boolean>;
|
|
1061
|
+
TryUpdateModelAsync(model: unknown, modelType: Type, prefix: string): Task_1<System_Internal.Boolean>;
|
|
1062
|
+
TryUpdateModelAsync(model: unknown, modelType: Type, prefix: string, valueProvider: IValueProvider, propertyFilter: Func_2<ModelMetadata, System_Internal.Boolean>): Task_1<System_Internal.Boolean>;
|
|
924
1063
|
TryValidateModel(model: unknown): boolean;
|
|
925
1064
|
TryValidateModel(model: unknown, prefix: string): boolean;
|
|
926
1065
|
Unauthorized(): UnauthorizedResult;
|
|
@@ -931,8 +1070,8 @@ export interface ControllerBase$instance {
|
|
|
931
1070
|
ValidationProblem(descriptor: ValidationProblemDetails): ActionResult;
|
|
932
1071
|
ValidationProblem(modelStateDictionary: ModelStateDictionary): ActionResult;
|
|
933
1072
|
ValidationProblem(): ActionResult;
|
|
934
|
-
ValidationProblem(detail: string, instance: string, statusCode:
|
|
935
|
-
ValidationProblem(detail?: string, instance?: string, statusCode?:
|
|
1073
|
+
ValidationProblem(detail: string, instance: string, statusCode: Nullable_1<System_Internal.Int32>, title: string, type: string, modelStateDictionary: ModelStateDictionary): ActionResult;
|
|
1074
|
+
ValidationProblem(detail?: string, instance?: string, statusCode?: Nullable_1<System_Internal.Int32>, title?: string, type?: string, modelStateDictionary?: ModelStateDictionary, extensions?: IDictionary_2<System_Internal.String, unknown>): ActionResult;
|
|
936
1075
|
}
|
|
937
1076
|
|
|
938
1077
|
|
|
@@ -944,8 +1083,10 @@ export const ControllerBase: (abstract new() => ControllerBase) & {
|
|
|
944
1083
|
export type ControllerBase = ControllerBase$instance;
|
|
945
1084
|
|
|
946
1085
|
export interface ControllerContext$instance extends ActionContext {
|
|
1086
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ControllerContext: never;
|
|
1087
|
+
|
|
947
1088
|
ActionDescriptor: ActionDescriptor | ControllerActionDescriptor;
|
|
948
|
-
ValueProviderFactories:
|
|
1089
|
+
ValueProviderFactories: IList_1<IValueProviderFactory>;
|
|
949
1090
|
}
|
|
950
1091
|
|
|
951
1092
|
|
|
@@ -958,6 +1099,8 @@ export const ControllerContext: {
|
|
|
958
1099
|
export type ControllerContext = ControllerContext$instance;
|
|
959
1100
|
|
|
960
1101
|
export interface ControllerContextAttribute$instance extends Attribute {
|
|
1102
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ControllerContextAttribute: never;
|
|
1103
|
+
|
|
961
1104
|
}
|
|
962
1105
|
|
|
963
1106
|
|
|
@@ -969,6 +1112,8 @@ export const ControllerContextAttribute: {
|
|
|
969
1112
|
export type ControllerContextAttribute = ControllerContextAttribute$instance;
|
|
970
1113
|
|
|
971
1114
|
export interface CookieTempDataProviderOptions$instance {
|
|
1115
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_CookieTempDataProviderOptions: never;
|
|
1116
|
+
|
|
972
1117
|
Cookie: CookieBuilder;
|
|
973
1118
|
}
|
|
974
1119
|
|
|
@@ -981,6 +1126,11 @@ export const CookieTempDataProviderOptions: {
|
|
|
981
1126
|
export type CookieTempDataProviderOptions = CookieTempDataProviderOptions$instance;
|
|
982
1127
|
|
|
983
1128
|
export interface CreatedAtActionResult$instance extends ObjectResult$instance {
|
|
1129
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_CreatedAtActionResult: never;
|
|
1130
|
+
|
|
1131
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1132
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
1133
|
+
|
|
984
1134
|
get ActionName(): string | undefined;
|
|
985
1135
|
set ActionName(value: string | undefined);
|
|
986
1136
|
get ControllerName(): string | undefined;
|
|
@@ -1008,6 +1158,11 @@ export type CreatedAtActionResult = CreatedAtActionResult$instance & __CreatedAt
|
|
|
1008
1158
|
|
|
1009
1159
|
|
|
1010
1160
|
export interface CreatedAtRouteResult$instance extends ObjectResult$instance {
|
|
1161
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_CreatedAtRouteResult: never;
|
|
1162
|
+
|
|
1163
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1164
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
1165
|
+
|
|
1011
1166
|
get RouteName(): string | undefined;
|
|
1012
1167
|
set RouteName(value: string | undefined);
|
|
1013
1168
|
get RouteValues(): RouteValueDictionary | undefined;
|
|
@@ -1034,6 +1189,11 @@ export type CreatedAtRouteResult = CreatedAtRouteResult$instance & __CreatedAtRo
|
|
|
1034
1189
|
|
|
1035
1190
|
|
|
1036
1191
|
export interface CreatedResult$instance extends ObjectResult$instance {
|
|
1192
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_CreatedResult: never;
|
|
1193
|
+
|
|
1194
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1195
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
1196
|
+
|
|
1037
1197
|
get Location(): string | undefined;
|
|
1038
1198
|
set Location(value: string | undefined);
|
|
1039
1199
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
@@ -1056,7 +1216,14 @@ export interface __CreatedResult$views {
|
|
|
1056
1216
|
export type CreatedResult = CreatedResult$instance & __CreatedResult$views;
|
|
1057
1217
|
|
|
1058
1218
|
|
|
1059
|
-
export interface DisableRequestSizeLimitAttribute$instance extends Attribute, IFilterMetadata {
|
|
1219
|
+
export interface DisableRequestSizeLimitAttribute$instance extends Attribute, IFilterMetadata, Microsoft_AspNetCore_Http_Metadata_Internal.IRequestSizeLimitMetadata$instance, Microsoft_AspNetCore_Mvc_Filters_Internal.IFilterFactory$instance {
|
|
1220
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_DisableRequestSizeLimitAttribute: never;
|
|
1221
|
+
|
|
1222
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IRequestSizeLimitMetadata: never;
|
|
1223
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
1224
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
1225
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
1226
|
+
|
|
1060
1227
|
readonly IsReusable: boolean;
|
|
1061
1228
|
Order: int;
|
|
1062
1229
|
CreateInstance(serviceProvider: IServiceProvider): IFilterMetadata;
|
|
@@ -1074,12 +1241,14 @@ export interface __DisableRequestSizeLimitAttribute$views {
|
|
|
1074
1241
|
As_IOrderedFilter(): Microsoft_AspNetCore_Mvc_Filters_Internal.IOrderedFilter$instance;
|
|
1075
1242
|
}
|
|
1076
1243
|
|
|
1077
|
-
export interface DisableRequestSizeLimitAttribute$instance extends Microsoft_AspNetCore_Http_Metadata_Internal.IRequestSizeLimitMetadata$instance, Microsoft_AspNetCore_Mvc_Filters_Internal.IFilterFactory$instance {}
|
|
1078
|
-
|
|
1079
1244
|
export type DisableRequestSizeLimitAttribute = DisableRequestSizeLimitAttribute$instance & __DisableRequestSizeLimitAttribute$views;
|
|
1080
1245
|
|
|
1081
1246
|
|
|
1082
1247
|
export interface EmptyResult$instance extends ActionResult$instance {
|
|
1248
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_EmptyResult: never;
|
|
1249
|
+
|
|
1250
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1251
|
+
|
|
1083
1252
|
ExecuteResult(context: ActionContext): void;
|
|
1084
1253
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
1085
1254
|
}
|
|
@@ -1098,6 +1267,10 @@ export type EmptyResult = EmptyResult$instance & __EmptyResult$views;
|
|
|
1098
1267
|
|
|
1099
1268
|
|
|
1100
1269
|
export interface FileContentResult$instance extends FileResult$instance {
|
|
1270
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_FileContentResult: never;
|
|
1271
|
+
|
|
1272
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1273
|
+
|
|
1101
1274
|
FileContents: byte[];
|
|
1102
1275
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
1103
1276
|
}
|
|
@@ -1117,12 +1290,16 @@ export type FileContentResult = FileContentResult$instance & __FileContentResult
|
|
|
1117
1290
|
|
|
1118
1291
|
|
|
1119
1292
|
export interface FileResult$instance extends ActionResult$instance {
|
|
1293
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_FileResult: never;
|
|
1294
|
+
|
|
1295
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1296
|
+
|
|
1120
1297
|
readonly ContentType: string;
|
|
1121
1298
|
EnableRangeProcessing: boolean;
|
|
1122
1299
|
get EntityTag(): EntityTagHeaderValue | undefined;
|
|
1123
1300
|
set EntityTag(value: EntityTagHeaderValue | undefined);
|
|
1124
1301
|
FileDownloadName: string;
|
|
1125
|
-
LastModified:
|
|
1302
|
+
LastModified: Nullable_1<DateTimeOffset>;
|
|
1126
1303
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
1127
1304
|
}
|
|
1128
1305
|
|
|
@@ -1139,6 +1316,10 @@ export type FileResult = FileResult$instance & __FileResult$views;
|
|
|
1139
1316
|
|
|
1140
1317
|
|
|
1141
1318
|
export interface FileStreamResult$instance extends FileResult$instance {
|
|
1319
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_FileStreamResult: never;
|
|
1320
|
+
|
|
1321
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1322
|
+
|
|
1142
1323
|
FileStream: Stream;
|
|
1143
1324
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
1144
1325
|
}
|
|
@@ -1158,7 +1339,11 @@ export type FileStreamResult = FileStreamResult$instance & __FileStreamResult$vi
|
|
|
1158
1339
|
|
|
1159
1340
|
|
|
1160
1341
|
export interface ForbidResult$instance extends ActionResult$instance {
|
|
1161
|
-
|
|
1342
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ForbidResult: never;
|
|
1343
|
+
|
|
1344
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1345
|
+
|
|
1346
|
+
AuthenticationSchemes: IList_1<System_Internal.String>;
|
|
1162
1347
|
get Properties(): AuthenticationProperties | undefined;
|
|
1163
1348
|
set Properties(value: AuthenticationProperties | undefined);
|
|
1164
1349
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
@@ -1168,10 +1353,10 @@ export interface ForbidResult$instance extends ActionResult$instance {
|
|
|
1168
1353
|
export const ForbidResult: {
|
|
1169
1354
|
new(): ForbidResult;
|
|
1170
1355
|
new(authenticationScheme: string): ForbidResult;
|
|
1171
|
-
new(authenticationSchemes:
|
|
1356
|
+
new(authenticationSchemes: IList_1<System_Internal.String>): ForbidResult;
|
|
1172
1357
|
new(properties: AuthenticationProperties): ForbidResult;
|
|
1173
1358
|
new(authenticationScheme: string, properties: AuthenticationProperties): ForbidResult;
|
|
1174
|
-
new(authenticationSchemes:
|
|
1359
|
+
new(authenticationSchemes: IList_1<System_Internal.String>, properties: AuthenticationProperties): ForbidResult;
|
|
1175
1360
|
};
|
|
1176
1361
|
|
|
1177
1362
|
|
|
@@ -1182,7 +1367,12 @@ export interface __ForbidResult$views {
|
|
|
1182
1367
|
export type ForbidResult = ForbidResult$instance & __ForbidResult$views;
|
|
1183
1368
|
|
|
1184
1369
|
|
|
1185
|
-
export interface FormatFilterAttribute$instance extends Attribute, IFilterMetadata {
|
|
1370
|
+
export interface FormatFilterAttribute$instance extends Attribute, IFilterMetadata, Microsoft_AspNetCore_Mvc_Filters_Internal.IFilterFactory$instance {
|
|
1371
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_FormatFilterAttribute: never;
|
|
1372
|
+
|
|
1373
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
1374
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
1375
|
+
|
|
1186
1376
|
readonly IsReusable: boolean;
|
|
1187
1377
|
CreateInstance(serviceProvider: IServiceProvider): IFilterMetadata;
|
|
1188
1378
|
}
|
|
@@ -1197,12 +1387,16 @@ export interface __FormatFilterAttribute$views {
|
|
|
1197
1387
|
As_IFilterFactory(): Microsoft_AspNetCore_Mvc_Filters_Internal.IFilterFactory$instance;
|
|
1198
1388
|
}
|
|
1199
1389
|
|
|
1200
|
-
export interface FormatFilterAttribute$instance extends Microsoft_AspNetCore_Mvc_Filters_Internal.IFilterFactory$instance {}
|
|
1201
|
-
|
|
1202
1390
|
export type FormatFilterAttribute = FormatFilterAttribute$instance & __FormatFilterAttribute$views;
|
|
1203
1391
|
|
|
1204
1392
|
|
|
1205
|
-
export interface FromBodyAttribute$instance extends Attribute {
|
|
1393
|
+
export interface FromBodyAttribute$instance extends Attribute, Microsoft_AspNetCore_Http_Metadata_Internal.IFromBodyMetadata$instance, Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IBindingSourceMetadata$instance {
|
|
1394
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_FromBodyAttribute: never;
|
|
1395
|
+
|
|
1396
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IFromBodyMetadata: never;
|
|
1397
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBindingSourceMetadata: never;
|
|
1398
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IConfigureEmptyBodyBehavior: never;
|
|
1399
|
+
|
|
1206
1400
|
readonly BindingSource: BindingSource;
|
|
1207
1401
|
EmptyBodyBehavior: EmptyBodyBehavior;
|
|
1208
1402
|
}
|
|
@@ -1218,12 +1412,16 @@ export interface __FromBodyAttribute$views {
|
|
|
1218
1412
|
As_IBindingSourceMetadata(): Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IBindingSourceMetadata$instance;
|
|
1219
1413
|
}
|
|
1220
1414
|
|
|
1221
|
-
export interface FromBodyAttribute$instance extends Microsoft_AspNetCore_Http_Metadata_Internal.IFromBodyMetadata$instance, Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IBindingSourceMetadata$instance {}
|
|
1222
|
-
|
|
1223
1415
|
export type FromBodyAttribute = FromBodyAttribute$instance & __FromBodyAttribute$views;
|
|
1224
1416
|
|
|
1225
1417
|
|
|
1226
|
-
export interface FromFormAttribute$instance extends Attribute {
|
|
1418
|
+
export interface FromFormAttribute$instance extends Attribute, Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IBindingSourceMetadata$instance {
|
|
1419
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_FromFormAttribute: never;
|
|
1420
|
+
|
|
1421
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IFromFormMetadata: never;
|
|
1422
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBindingSourceMetadata: never;
|
|
1423
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IModelNameProvider: never;
|
|
1424
|
+
|
|
1227
1425
|
readonly BindingSource: BindingSource;
|
|
1228
1426
|
get Name(): string | undefined;
|
|
1229
1427
|
set Name(value: string | undefined);
|
|
@@ -1241,12 +1439,16 @@ export interface __FromFormAttribute$views {
|
|
|
1241
1439
|
As_IModelNameProvider(): Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IModelNameProvider$instance;
|
|
1242
1440
|
}
|
|
1243
1441
|
|
|
1244
|
-
export interface FromFormAttribute$instance extends Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IBindingSourceMetadata$instance {}
|
|
1245
|
-
|
|
1246
1442
|
export type FromFormAttribute = FromFormAttribute$instance & __FromFormAttribute$views;
|
|
1247
1443
|
|
|
1248
1444
|
|
|
1249
|
-
export interface FromHeaderAttribute$instance extends Attribute {
|
|
1445
|
+
export interface FromHeaderAttribute$instance extends Attribute, Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IBindingSourceMetadata$instance {
|
|
1446
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_FromHeaderAttribute: never;
|
|
1447
|
+
|
|
1448
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IFromHeaderMetadata: never;
|
|
1449
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBindingSourceMetadata: never;
|
|
1450
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IModelNameProvider: never;
|
|
1451
|
+
|
|
1250
1452
|
readonly BindingSource: BindingSource;
|
|
1251
1453
|
get Name(): string | undefined;
|
|
1252
1454
|
set Name(value: string | undefined);
|
|
@@ -1264,12 +1466,16 @@ export interface __FromHeaderAttribute$views {
|
|
|
1264
1466
|
As_IModelNameProvider(): Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IModelNameProvider$instance;
|
|
1265
1467
|
}
|
|
1266
1468
|
|
|
1267
|
-
export interface FromHeaderAttribute$instance extends Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IBindingSourceMetadata$instance {}
|
|
1268
|
-
|
|
1269
1469
|
export type FromHeaderAttribute = FromHeaderAttribute$instance & __FromHeaderAttribute$views;
|
|
1270
1470
|
|
|
1271
1471
|
|
|
1272
|
-
export interface FromQueryAttribute$instance extends Attribute {
|
|
1472
|
+
export interface FromQueryAttribute$instance extends Attribute, Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IBindingSourceMetadata$instance {
|
|
1473
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_FromQueryAttribute: never;
|
|
1474
|
+
|
|
1475
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IFromQueryMetadata: never;
|
|
1476
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBindingSourceMetadata: never;
|
|
1477
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IModelNameProvider: never;
|
|
1478
|
+
|
|
1273
1479
|
readonly BindingSource: BindingSource;
|
|
1274
1480
|
get Name(): string | undefined;
|
|
1275
1481
|
set Name(value: string | undefined);
|
|
@@ -1287,12 +1493,16 @@ export interface __FromQueryAttribute$views {
|
|
|
1287
1493
|
As_IModelNameProvider(): Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IModelNameProvider$instance;
|
|
1288
1494
|
}
|
|
1289
1495
|
|
|
1290
|
-
export interface FromQueryAttribute$instance extends Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IBindingSourceMetadata$instance {}
|
|
1291
|
-
|
|
1292
1496
|
export type FromQueryAttribute = FromQueryAttribute$instance & __FromQueryAttribute$views;
|
|
1293
1497
|
|
|
1294
1498
|
|
|
1295
|
-
export interface FromRouteAttribute$instance extends Attribute {
|
|
1499
|
+
export interface FromRouteAttribute$instance extends Attribute, Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IBindingSourceMetadata$instance {
|
|
1500
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_FromRouteAttribute: never;
|
|
1501
|
+
|
|
1502
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IFromRouteMetadata: never;
|
|
1503
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBindingSourceMetadata: never;
|
|
1504
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IModelNameProvider: never;
|
|
1505
|
+
|
|
1296
1506
|
readonly BindingSource: BindingSource;
|
|
1297
1507
|
get Name(): string | undefined;
|
|
1298
1508
|
set Name(value: string | undefined);
|
|
@@ -1310,12 +1520,15 @@ export interface __FromRouteAttribute$views {
|
|
|
1310
1520
|
As_IModelNameProvider(): Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IModelNameProvider$instance;
|
|
1311
1521
|
}
|
|
1312
1522
|
|
|
1313
|
-
export interface FromRouteAttribute$instance extends Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IBindingSourceMetadata$instance {}
|
|
1314
|
-
|
|
1315
1523
|
export type FromRouteAttribute = FromRouteAttribute$instance & __FromRouteAttribute$views;
|
|
1316
1524
|
|
|
1317
1525
|
|
|
1318
|
-
export interface FromServicesAttribute$instance extends Attribute, IFromServiceMetadata {
|
|
1526
|
+
export interface FromServicesAttribute$instance extends Attribute, IFromServiceMetadata, Microsoft_AspNetCore_Http_Metadata_Internal.IFromServiceMetadata$instance, Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IBindingSourceMetadata$instance {
|
|
1527
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_FromServicesAttribute: never;
|
|
1528
|
+
|
|
1529
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IFromServiceMetadata: never;
|
|
1530
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBindingSourceMetadata: never;
|
|
1531
|
+
|
|
1319
1532
|
readonly BindingSource: BindingSource;
|
|
1320
1533
|
}
|
|
1321
1534
|
|
|
@@ -1329,12 +1542,12 @@ export interface __FromServicesAttribute$views {
|
|
|
1329
1542
|
As_IBindingSourceMetadata(): Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IBindingSourceMetadata$instance;
|
|
1330
1543
|
}
|
|
1331
1544
|
|
|
1332
|
-
export interface FromServicesAttribute$instance extends Microsoft_AspNetCore_Http_Metadata_Internal.IFromServiceMetadata$instance, Microsoft_AspNetCore_Mvc_ModelBinding_Internal.IBindingSourceMetadata$instance {}
|
|
1333
|
-
|
|
1334
1545
|
export type FromServicesAttribute = FromServicesAttribute$instance & __FromServicesAttribute$views;
|
|
1335
1546
|
|
|
1336
1547
|
|
|
1337
1548
|
export interface HiddenInputAttribute$instance extends Attribute {
|
|
1549
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_HiddenInputAttribute: never;
|
|
1550
|
+
|
|
1338
1551
|
DisplayValue: boolean;
|
|
1339
1552
|
}
|
|
1340
1553
|
|
|
@@ -1346,7 +1559,12 @@ export const HiddenInputAttribute: {
|
|
|
1346
1559
|
|
|
1347
1560
|
export type HiddenInputAttribute = HiddenInputAttribute$instance;
|
|
1348
1561
|
|
|
1349
|
-
export interface HttpDeleteAttribute$instance extends HttpMethodAttribute {
|
|
1562
|
+
export interface HttpDeleteAttribute$instance extends HttpMethodAttribute, Microsoft_AspNetCore_Mvc_Routing_Internal.IActionHttpMethodProvider$instance {
|
|
1563
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_HttpDeleteAttribute: never;
|
|
1564
|
+
|
|
1565
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IActionHttpMethodProvider: never;
|
|
1566
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IRouteTemplateProvider: never;
|
|
1567
|
+
|
|
1350
1568
|
}
|
|
1351
1569
|
|
|
1352
1570
|
|
|
@@ -1361,12 +1579,15 @@ export interface __HttpDeleteAttribute$views {
|
|
|
1361
1579
|
As_IRouteTemplateProvider(): Microsoft_AspNetCore_Mvc_Routing_Internal.IRouteTemplateProvider$instance;
|
|
1362
1580
|
}
|
|
1363
1581
|
|
|
1364
|
-
export interface HttpDeleteAttribute$instance extends Microsoft_AspNetCore_Mvc_Routing_Internal.IActionHttpMethodProvider$instance {}
|
|
1365
|
-
|
|
1366
1582
|
export type HttpDeleteAttribute = HttpDeleteAttribute$instance & __HttpDeleteAttribute$views;
|
|
1367
1583
|
|
|
1368
1584
|
|
|
1369
|
-
export interface HttpGetAttribute$instance extends HttpMethodAttribute {
|
|
1585
|
+
export interface HttpGetAttribute$instance extends HttpMethodAttribute, Microsoft_AspNetCore_Mvc_Routing_Internal.IActionHttpMethodProvider$instance {
|
|
1586
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_HttpGetAttribute: never;
|
|
1587
|
+
|
|
1588
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IActionHttpMethodProvider: never;
|
|
1589
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IRouteTemplateProvider: never;
|
|
1590
|
+
|
|
1370
1591
|
}
|
|
1371
1592
|
|
|
1372
1593
|
|
|
@@ -1381,12 +1602,15 @@ export interface __HttpGetAttribute$views {
|
|
|
1381
1602
|
As_IRouteTemplateProvider(): Microsoft_AspNetCore_Mvc_Routing_Internal.IRouteTemplateProvider$instance;
|
|
1382
1603
|
}
|
|
1383
1604
|
|
|
1384
|
-
export interface HttpGetAttribute$instance extends Microsoft_AspNetCore_Mvc_Routing_Internal.IActionHttpMethodProvider$instance {}
|
|
1385
|
-
|
|
1386
1605
|
export type HttpGetAttribute = HttpGetAttribute$instance & __HttpGetAttribute$views;
|
|
1387
1606
|
|
|
1388
1607
|
|
|
1389
|
-
export interface HttpHeadAttribute$instance extends HttpMethodAttribute {
|
|
1608
|
+
export interface HttpHeadAttribute$instance extends HttpMethodAttribute, Microsoft_AspNetCore_Mvc_Routing_Internal.IActionHttpMethodProvider$instance {
|
|
1609
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_HttpHeadAttribute: never;
|
|
1610
|
+
|
|
1611
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IActionHttpMethodProvider: never;
|
|
1612
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IRouteTemplateProvider: never;
|
|
1613
|
+
|
|
1390
1614
|
}
|
|
1391
1615
|
|
|
1392
1616
|
|
|
@@ -1401,12 +1625,15 @@ export interface __HttpHeadAttribute$views {
|
|
|
1401
1625
|
As_IRouteTemplateProvider(): Microsoft_AspNetCore_Mvc_Routing_Internal.IRouteTemplateProvider$instance;
|
|
1402
1626
|
}
|
|
1403
1627
|
|
|
1404
|
-
export interface HttpHeadAttribute$instance extends Microsoft_AspNetCore_Mvc_Routing_Internal.IActionHttpMethodProvider$instance {}
|
|
1405
|
-
|
|
1406
1628
|
export type HttpHeadAttribute = HttpHeadAttribute$instance & __HttpHeadAttribute$views;
|
|
1407
1629
|
|
|
1408
1630
|
|
|
1409
|
-
export interface HttpOptionsAttribute$instance extends HttpMethodAttribute {
|
|
1631
|
+
export interface HttpOptionsAttribute$instance extends HttpMethodAttribute, Microsoft_AspNetCore_Mvc_Routing_Internal.IActionHttpMethodProvider$instance {
|
|
1632
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_HttpOptionsAttribute: never;
|
|
1633
|
+
|
|
1634
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IActionHttpMethodProvider: never;
|
|
1635
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IRouteTemplateProvider: never;
|
|
1636
|
+
|
|
1410
1637
|
}
|
|
1411
1638
|
|
|
1412
1639
|
|
|
@@ -1421,12 +1648,15 @@ export interface __HttpOptionsAttribute$views {
|
|
|
1421
1648
|
As_IRouteTemplateProvider(): Microsoft_AspNetCore_Mvc_Routing_Internal.IRouteTemplateProvider$instance;
|
|
1422
1649
|
}
|
|
1423
1650
|
|
|
1424
|
-
export interface HttpOptionsAttribute$instance extends Microsoft_AspNetCore_Mvc_Routing_Internal.IActionHttpMethodProvider$instance {}
|
|
1425
|
-
|
|
1426
1651
|
export type HttpOptionsAttribute = HttpOptionsAttribute$instance & __HttpOptionsAttribute$views;
|
|
1427
1652
|
|
|
1428
1653
|
|
|
1429
|
-
export interface HttpPatchAttribute$instance extends HttpMethodAttribute {
|
|
1654
|
+
export interface HttpPatchAttribute$instance extends HttpMethodAttribute, Microsoft_AspNetCore_Mvc_Routing_Internal.IActionHttpMethodProvider$instance {
|
|
1655
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_HttpPatchAttribute: never;
|
|
1656
|
+
|
|
1657
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IActionHttpMethodProvider: never;
|
|
1658
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IRouteTemplateProvider: never;
|
|
1659
|
+
|
|
1430
1660
|
}
|
|
1431
1661
|
|
|
1432
1662
|
|
|
@@ -1441,12 +1671,15 @@ export interface __HttpPatchAttribute$views {
|
|
|
1441
1671
|
As_IRouteTemplateProvider(): Microsoft_AspNetCore_Mvc_Routing_Internal.IRouteTemplateProvider$instance;
|
|
1442
1672
|
}
|
|
1443
1673
|
|
|
1444
|
-
export interface HttpPatchAttribute$instance extends Microsoft_AspNetCore_Mvc_Routing_Internal.IActionHttpMethodProvider$instance {}
|
|
1445
|
-
|
|
1446
1674
|
export type HttpPatchAttribute = HttpPatchAttribute$instance & __HttpPatchAttribute$views;
|
|
1447
1675
|
|
|
1448
1676
|
|
|
1449
|
-
export interface HttpPostAttribute$instance extends HttpMethodAttribute {
|
|
1677
|
+
export interface HttpPostAttribute$instance extends HttpMethodAttribute, Microsoft_AspNetCore_Mvc_Routing_Internal.IActionHttpMethodProvider$instance {
|
|
1678
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_HttpPostAttribute: never;
|
|
1679
|
+
|
|
1680
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IActionHttpMethodProvider: never;
|
|
1681
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IRouteTemplateProvider: never;
|
|
1682
|
+
|
|
1450
1683
|
}
|
|
1451
1684
|
|
|
1452
1685
|
|
|
@@ -1461,12 +1694,15 @@ export interface __HttpPostAttribute$views {
|
|
|
1461
1694
|
As_IRouteTemplateProvider(): Microsoft_AspNetCore_Mvc_Routing_Internal.IRouteTemplateProvider$instance;
|
|
1462
1695
|
}
|
|
1463
1696
|
|
|
1464
|
-
export interface HttpPostAttribute$instance extends Microsoft_AspNetCore_Mvc_Routing_Internal.IActionHttpMethodProvider$instance {}
|
|
1465
|
-
|
|
1466
1697
|
export type HttpPostAttribute = HttpPostAttribute$instance & __HttpPostAttribute$views;
|
|
1467
1698
|
|
|
1468
1699
|
|
|
1469
|
-
export interface HttpPutAttribute$instance extends HttpMethodAttribute {
|
|
1700
|
+
export interface HttpPutAttribute$instance extends HttpMethodAttribute, Microsoft_AspNetCore_Mvc_Routing_Internal.IActionHttpMethodProvider$instance {
|
|
1701
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_HttpPutAttribute: never;
|
|
1702
|
+
|
|
1703
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IActionHttpMethodProvider: never;
|
|
1704
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IRouteTemplateProvider: never;
|
|
1705
|
+
|
|
1470
1706
|
}
|
|
1471
1707
|
|
|
1472
1708
|
|
|
@@ -1481,12 +1717,16 @@ export interface __HttpPutAttribute$views {
|
|
|
1481
1717
|
As_IRouteTemplateProvider(): Microsoft_AspNetCore_Mvc_Routing_Internal.IRouteTemplateProvider$instance;
|
|
1482
1718
|
}
|
|
1483
1719
|
|
|
1484
|
-
export interface HttpPutAttribute$instance extends Microsoft_AspNetCore_Mvc_Routing_Internal.IActionHttpMethodProvider$instance {}
|
|
1485
|
-
|
|
1486
1720
|
export type HttpPutAttribute = HttpPutAttribute$instance & __HttpPutAttribute$views;
|
|
1487
1721
|
|
|
1488
1722
|
|
|
1489
|
-
export interface IgnoreAntiforgeryTokenAttribute$instance extends Attribute, IAntiforgeryPolicy, IFilterMetadata {
|
|
1723
|
+
export interface IgnoreAntiforgeryTokenAttribute$instance extends Attribute, IAntiforgeryPolicy, IFilterMetadata, Microsoft_AspNetCore_Mvc_ViewFeatures_Internal.IAntiforgeryPolicy$instance {
|
|
1724
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_IgnoreAntiforgeryTokenAttribute: never;
|
|
1725
|
+
|
|
1726
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
1727
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
1728
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ViewFeatures_IAntiforgeryPolicy: never;
|
|
1729
|
+
|
|
1490
1730
|
Order: int;
|
|
1491
1731
|
}
|
|
1492
1732
|
|
|
@@ -1500,12 +1740,12 @@ export interface __IgnoreAntiforgeryTokenAttribute$views {
|
|
|
1500
1740
|
As_IOrderedFilter(): Microsoft_AspNetCore_Mvc_Filters_Internal.IOrderedFilter$instance;
|
|
1501
1741
|
}
|
|
1502
1742
|
|
|
1503
|
-
export interface IgnoreAntiforgeryTokenAttribute$instance extends Microsoft_AspNetCore_Mvc_ViewFeatures_Internal.IAntiforgeryPolicy$instance {}
|
|
1504
|
-
|
|
1505
1743
|
export type IgnoreAntiforgeryTokenAttribute = IgnoreAntiforgeryTokenAttribute$instance & __IgnoreAntiforgeryTokenAttribute$views;
|
|
1506
1744
|
|
|
1507
1745
|
|
|
1508
1746
|
export interface JsonOptions$instance {
|
|
1747
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_JsonOptions: never;
|
|
1748
|
+
|
|
1509
1749
|
AllowInputFormatterExceptionMessages: boolean;
|
|
1510
1750
|
readonly JsonSerializerOptions: JsonSerializerOptions;
|
|
1511
1751
|
}
|
|
@@ -1519,11 +1759,16 @@ export const JsonOptions: {
|
|
|
1519
1759
|
export type JsonOptions = JsonOptions$instance;
|
|
1520
1760
|
|
|
1521
1761
|
export interface JsonResult$instance extends ActionResult$instance {
|
|
1762
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_JsonResult: never;
|
|
1763
|
+
|
|
1764
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1765
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
1766
|
+
|
|
1522
1767
|
get ContentType(): string | undefined;
|
|
1523
1768
|
set ContentType(value: string | undefined);
|
|
1524
1769
|
get SerializerSettings(): unknown | undefined;
|
|
1525
1770
|
set SerializerSettings(value: unknown | undefined);
|
|
1526
|
-
StatusCode:
|
|
1771
|
+
StatusCode: Nullable_1<System_Internal.Int32>;
|
|
1527
1772
|
get Value(): unknown | undefined;
|
|
1528
1773
|
set Value(value: unknown | undefined);
|
|
1529
1774
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
@@ -1545,6 +1790,10 @@ export type JsonResult = JsonResult$instance & __JsonResult$views;
|
|
|
1545
1790
|
|
|
1546
1791
|
|
|
1547
1792
|
export interface LocalRedirectResult$instance extends ActionResult$instance {
|
|
1793
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_LocalRedirectResult: never;
|
|
1794
|
+
|
|
1795
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1796
|
+
|
|
1548
1797
|
Permanent: boolean;
|
|
1549
1798
|
PreserveMethod: boolean;
|
|
1550
1799
|
Url: string;
|
|
@@ -1568,7 +1817,13 @@ export interface __LocalRedirectResult$views {
|
|
|
1568
1817
|
export type LocalRedirectResult = LocalRedirectResult$instance & __LocalRedirectResult$views;
|
|
1569
1818
|
|
|
1570
1819
|
|
|
1571
|
-
export interface MiddlewareFilterAttribute$instance extends Attribute, IFilterMetadata {
|
|
1820
|
+
export interface MiddlewareFilterAttribute$instance extends Attribute, IFilterMetadata, Microsoft_AspNetCore_Mvc_Filters_Internal.IFilterFactory$instance {
|
|
1821
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_MiddlewareFilterAttribute: never;
|
|
1822
|
+
|
|
1823
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
1824
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
1825
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
1826
|
+
|
|
1572
1827
|
readonly ConfigurationType: Type;
|
|
1573
1828
|
readonly IsReusable: boolean;
|
|
1574
1829
|
Order: int;
|
|
@@ -1586,12 +1841,16 @@ export interface __MiddlewareFilterAttribute$views {
|
|
|
1586
1841
|
As_IOrderedFilter(): Microsoft_AspNetCore_Mvc_Filters_Internal.IOrderedFilter$instance;
|
|
1587
1842
|
}
|
|
1588
1843
|
|
|
1589
|
-
export interface MiddlewareFilterAttribute$instance extends Microsoft_AspNetCore_Mvc_Filters_Internal.IFilterFactory$instance {}
|
|
1590
|
-
|
|
1591
1844
|
export type MiddlewareFilterAttribute = MiddlewareFilterAttribute$instance & __MiddlewareFilterAttribute$views;
|
|
1592
1845
|
|
|
1593
1846
|
|
|
1594
1847
|
export interface MiddlewareFilterAttribute_1$instance<T> extends MiddlewareFilterAttribute$instance, IFilterMetadata {
|
|
1848
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_MiddlewareFilterAttribute_1: never;
|
|
1849
|
+
|
|
1850
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
1851
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
1852
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
1853
|
+
|
|
1595
1854
|
CreateInstance(serviceProvider: IServiceProvider): IFilterMetadata;
|
|
1596
1855
|
}
|
|
1597
1856
|
|
|
@@ -1610,6 +1869,12 @@ export type MiddlewareFilterAttribute_1<T> = MiddlewareFilterAttribute_1$instanc
|
|
|
1610
1869
|
|
|
1611
1870
|
|
|
1612
1871
|
export interface ModelBinderAttribute$instance extends Attribute {
|
|
1872
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ModelBinderAttribute: never;
|
|
1873
|
+
|
|
1874
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBinderTypeProviderMetadata: never;
|
|
1875
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBindingSourceMetadata: never;
|
|
1876
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IModelNameProvider: never;
|
|
1877
|
+
|
|
1613
1878
|
get BinderType(): Type | undefined;
|
|
1614
1879
|
set BinderType(value: Type | undefined);
|
|
1615
1880
|
BindingSource: BindingSource;
|
|
@@ -1634,6 +1899,12 @@ export type ModelBinderAttribute = ModelBinderAttribute$instance & __ModelBinder
|
|
|
1634
1899
|
|
|
1635
1900
|
|
|
1636
1901
|
export interface ModelBinderAttribute_1$instance<TBinder extends IModelBinder> extends ModelBinderAttribute$instance {
|
|
1902
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ModelBinderAttribute_1: never;
|
|
1903
|
+
|
|
1904
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBinderTypeProviderMetadata: never;
|
|
1905
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBindingSourceMetadata: never;
|
|
1906
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IModelNameProvider: never;
|
|
1907
|
+
|
|
1637
1908
|
}
|
|
1638
1909
|
|
|
1639
1910
|
|
|
@@ -1652,6 +1923,8 @@ export type ModelBinderAttribute_1<TBinder extends IModelBinder> = ModelBinderAt
|
|
|
1652
1923
|
|
|
1653
1924
|
|
|
1654
1925
|
export interface ModelMetadataTypeAttribute$instance extends Attribute {
|
|
1926
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ModelMetadataTypeAttribute: never;
|
|
1927
|
+
|
|
1655
1928
|
readonly MetadataType: Type;
|
|
1656
1929
|
}
|
|
1657
1930
|
|
|
@@ -1664,6 +1937,8 @@ export const ModelMetadataTypeAttribute: {
|
|
|
1664
1937
|
export type ModelMetadataTypeAttribute = ModelMetadataTypeAttribute$instance;
|
|
1665
1938
|
|
|
1666
1939
|
export interface ModelMetadataTypeAttribute_1$instance<T> extends ModelMetadataTypeAttribute {
|
|
1940
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ModelMetadataTypeAttribute_1: never;
|
|
1941
|
+
|
|
1667
1942
|
}
|
|
1668
1943
|
|
|
1669
1944
|
|
|
@@ -1675,9 +1950,14 @@ export const ModelMetadataTypeAttribute_1: {
|
|
|
1675
1950
|
export type ModelMetadataTypeAttribute_1<T> = ModelMetadataTypeAttribute_1$instance<T>;
|
|
1676
1951
|
|
|
1677
1952
|
export interface MvcOptions$instance {
|
|
1953
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_MvcOptions: never;
|
|
1954
|
+
|
|
1955
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1956
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1957
|
+
|
|
1678
1958
|
AllowEmptyInputInBodyModelBinding: boolean;
|
|
1679
|
-
readonly CacheProfiles:
|
|
1680
|
-
readonly Conventions:
|
|
1959
|
+
readonly CacheProfiles: IDictionary_2<System_Internal.String, CacheProfile>;
|
|
1960
|
+
readonly Conventions: IList_1<IApplicationModelConvention>;
|
|
1681
1961
|
EnableActionInvokers: boolean;
|
|
1682
1962
|
EnableEndpointRouting: boolean;
|
|
1683
1963
|
readonly Filters: FilterCollection;
|
|
@@ -1687,22 +1967,22 @@ export interface MvcOptions$instance {
|
|
|
1687
1967
|
MaxModelBindingCollectionSize: int;
|
|
1688
1968
|
MaxModelBindingRecursionDepth: int;
|
|
1689
1969
|
MaxModelValidationErrors: int;
|
|
1690
|
-
MaxValidationDepth:
|
|
1691
|
-
readonly ModelBinderProviders:
|
|
1970
|
+
MaxValidationDepth: Nullable_1<System_Internal.Int32>;
|
|
1971
|
+
readonly ModelBinderProviders: IList_1<IModelBinderProvider>;
|
|
1692
1972
|
readonly ModelBindingMessageProvider: DefaultModelBindingMessageProvider;
|
|
1693
|
-
readonly ModelMetadataDetailsProviders:
|
|
1694
|
-
readonly ModelValidatorProviders:
|
|
1973
|
+
readonly ModelMetadataDetailsProviders: IList_1<IMetadataDetailsProvider>;
|
|
1974
|
+
readonly ModelValidatorProviders: IList_1<IModelValidatorProvider>;
|
|
1695
1975
|
readonly OutputFormatters: FormatterCollection_1<IOutputFormatter>;
|
|
1696
1976
|
RequireHttpsPermanent: boolean;
|
|
1697
1977
|
RespectBrowserAcceptHeader: boolean;
|
|
1698
1978
|
ReturnHttpNotAcceptable: boolean;
|
|
1699
|
-
SslPort:
|
|
1979
|
+
SslPort: Nullable_1<System_Internal.Int32>;
|
|
1700
1980
|
SuppressAsyncSuffixInActionNames: boolean;
|
|
1701
1981
|
SuppressImplicitRequiredAttributeForNonNullableReferenceTypes: boolean;
|
|
1702
1982
|
SuppressInputFormatterBuffering: boolean;
|
|
1703
1983
|
SuppressOutputFormatterBuffering: boolean;
|
|
1704
1984
|
ValidateComplexTypesIfChildValidationFails: boolean;
|
|
1705
|
-
readonly ValueProviderFactories:
|
|
1985
|
+
readonly ValueProviderFactories: IList_1<IValueProviderFactory>;
|
|
1706
1986
|
}
|
|
1707
1987
|
|
|
1708
1988
|
|
|
@@ -1714,9 +1994,14 @@ export const MvcOptions: {
|
|
|
1714
1994
|
export type MvcOptions = MvcOptions$instance;
|
|
1715
1995
|
|
|
1716
1996
|
export interface MvcViewOptions$instance {
|
|
1717
|
-
readonly
|
|
1997
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_MvcViewOptions: never;
|
|
1998
|
+
|
|
1999
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2000
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2001
|
+
|
|
2002
|
+
readonly ClientModelValidatorProviders: IList_1<IClientModelValidatorProvider>;
|
|
1718
2003
|
HtmlHelperOptions: HtmlHelperOptions;
|
|
1719
|
-
readonly ViewEngines:
|
|
2004
|
+
readonly ViewEngines: IList_1<IViewEngine>;
|
|
1720
2005
|
}
|
|
1721
2006
|
|
|
1722
2007
|
|
|
@@ -1728,6 +2013,12 @@ export const MvcViewOptions: {
|
|
|
1728
2013
|
export type MvcViewOptions = MvcViewOptions$instance;
|
|
1729
2014
|
|
|
1730
2015
|
export interface NoContentResult$instance extends StatusCodeResult$instance {
|
|
2016
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_NoContentResult: never;
|
|
2017
|
+
|
|
2018
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2019
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IClientErrorActionResult: never;
|
|
2020
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
2021
|
+
|
|
1731
2022
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
1732
2023
|
}
|
|
1733
2024
|
|
|
@@ -1746,6 +2037,8 @@ export type NoContentResult = NoContentResult$instance & __NoContentResult$views
|
|
|
1746
2037
|
|
|
1747
2038
|
|
|
1748
2039
|
export interface NonActionAttribute$instance extends Attribute {
|
|
2040
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_NonActionAttribute: never;
|
|
2041
|
+
|
|
1749
2042
|
}
|
|
1750
2043
|
|
|
1751
2044
|
|
|
@@ -1757,6 +2050,8 @@ export const NonActionAttribute: {
|
|
|
1757
2050
|
export type NonActionAttribute = NonActionAttribute$instance;
|
|
1758
2051
|
|
|
1759
2052
|
export interface NonControllerAttribute$instance extends Attribute {
|
|
2053
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_NonControllerAttribute: never;
|
|
2054
|
+
|
|
1760
2055
|
}
|
|
1761
2056
|
|
|
1762
2057
|
|
|
@@ -1768,6 +2063,8 @@ export const NonControllerAttribute: {
|
|
|
1768
2063
|
export type NonControllerAttribute = NonControllerAttribute$instance;
|
|
1769
2064
|
|
|
1770
2065
|
export interface NonViewComponentAttribute$instance extends Attribute {
|
|
2066
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_NonViewComponentAttribute: never;
|
|
2067
|
+
|
|
1771
2068
|
}
|
|
1772
2069
|
|
|
1773
2070
|
|
|
@@ -1779,6 +2076,11 @@ export const NonViewComponentAttribute: {
|
|
|
1779
2076
|
export type NonViewComponentAttribute = NonViewComponentAttribute$instance;
|
|
1780
2077
|
|
|
1781
2078
|
export interface NotFoundObjectResult$instance extends ObjectResult$instance {
|
|
2079
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_NotFoundObjectResult: never;
|
|
2080
|
+
|
|
2081
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2082
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
2083
|
+
|
|
1782
2084
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
1783
2085
|
}
|
|
1784
2086
|
|
|
@@ -1797,6 +2099,12 @@ export type NotFoundObjectResult = NotFoundObjectResult$instance & __NotFoundObj
|
|
|
1797
2099
|
|
|
1798
2100
|
|
|
1799
2101
|
export interface NotFoundResult$instance extends StatusCodeResult$instance {
|
|
2102
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_NotFoundResult: never;
|
|
2103
|
+
|
|
2104
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2105
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IClientErrorActionResult: never;
|
|
2106
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
2107
|
+
|
|
1800
2108
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
1801
2109
|
}
|
|
1802
2110
|
|
|
@@ -1815,11 +2123,16 @@ export type NotFoundResult = NotFoundResult$instance & __NotFoundResult$views;
|
|
|
1815
2123
|
|
|
1816
2124
|
|
|
1817
2125
|
export interface ObjectResult$instance extends ActionResult$instance {
|
|
2126
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ObjectResult: never;
|
|
2127
|
+
|
|
2128
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2129
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
2130
|
+
|
|
1818
2131
|
ContentTypes: MediaTypeCollection;
|
|
1819
2132
|
get DeclaredType(): Type | undefined;
|
|
1820
2133
|
set DeclaredType(value: Type | undefined);
|
|
1821
2134
|
Formatters: FormatterCollection_1<IOutputFormatter>;
|
|
1822
|
-
StatusCode:
|
|
2135
|
+
StatusCode: Nullable_1<System_Internal.Int32>;
|
|
1823
2136
|
get Value(): unknown | undefined;
|
|
1824
2137
|
set Value(value: unknown | undefined);
|
|
1825
2138
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
@@ -1841,6 +2154,11 @@ export type ObjectResult = ObjectResult$instance & __ObjectResult$views;
|
|
|
1841
2154
|
|
|
1842
2155
|
|
|
1843
2156
|
export interface OkObjectResult$instance extends ObjectResult$instance {
|
|
2157
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_OkObjectResult: never;
|
|
2158
|
+
|
|
2159
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2160
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
2161
|
+
|
|
1844
2162
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
1845
2163
|
}
|
|
1846
2164
|
|
|
@@ -1859,6 +2177,12 @@ export type OkObjectResult = OkObjectResult$instance & __OkObjectResult$views;
|
|
|
1859
2177
|
|
|
1860
2178
|
|
|
1861
2179
|
export interface OkResult$instance extends StatusCodeResult$instance {
|
|
2180
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_OkResult: never;
|
|
2181
|
+
|
|
2182
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2183
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IClientErrorActionResult: never;
|
|
2184
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
2185
|
+
|
|
1862
2186
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
1863
2187
|
}
|
|
1864
2188
|
|
|
@@ -1877,6 +2201,10 @@ export type OkResult = OkResult$instance & __OkResult$views;
|
|
|
1877
2201
|
|
|
1878
2202
|
|
|
1879
2203
|
export interface PageRemoteAttribute$instance extends RemoteAttributeBase$instance {
|
|
2204
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_PageRemoteAttribute: never;
|
|
2205
|
+
|
|
2206
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_Validation_IClientModelValidator: never;
|
|
2207
|
+
|
|
1880
2208
|
get PageHandler(): string | undefined;
|
|
1881
2209
|
set PageHandler(value: string | undefined);
|
|
1882
2210
|
get PageName(): string | undefined;
|
|
@@ -1899,10 +2227,15 @@ export type PageRemoteAttribute = PageRemoteAttribute$instance & __PageRemoteAtt
|
|
|
1899
2227
|
|
|
1900
2228
|
|
|
1901
2229
|
export interface PartialViewResult$instance extends ActionResult$instance {
|
|
2230
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_PartialViewResult: never;
|
|
2231
|
+
|
|
2232
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2233
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
2234
|
+
|
|
1902
2235
|
get ContentType(): string | undefined;
|
|
1903
2236
|
set ContentType(value: string | undefined);
|
|
1904
2237
|
readonly Model: unknown | undefined;
|
|
1905
|
-
StatusCode:
|
|
2238
|
+
StatusCode: Nullable_1<System_Internal.Int32>;
|
|
1906
2239
|
TempData: ITempDataDictionary;
|
|
1907
2240
|
ViewData: ViewDataDictionary;
|
|
1908
2241
|
get ViewEngine(): IViewEngine | undefined;
|
|
@@ -1927,6 +2260,10 @@ export type PartialViewResult = PartialViewResult$instance & __PartialViewResult
|
|
|
1927
2260
|
|
|
1928
2261
|
|
|
1929
2262
|
export interface PhysicalFileResult$instance extends FileResult$instance {
|
|
2263
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_PhysicalFileResult: never;
|
|
2264
|
+
|
|
2265
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2266
|
+
|
|
1930
2267
|
FileName: string;
|
|
1931
2268
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
1932
2269
|
}
|
|
@@ -1946,12 +2283,14 @@ export type PhysicalFileResult = PhysicalFileResult$instance & __PhysicalFileRes
|
|
|
1946
2283
|
|
|
1947
2284
|
|
|
1948
2285
|
export interface ProblemDetails$instance {
|
|
2286
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ProblemDetails: never;
|
|
2287
|
+
|
|
1949
2288
|
get Detail(): string | undefined;
|
|
1950
2289
|
set Detail(value: string | undefined);
|
|
1951
|
-
Extensions:
|
|
2290
|
+
Extensions: IDictionary_2<System_Internal.String, unknown | undefined>;
|
|
1952
2291
|
get Instance(): string | undefined;
|
|
1953
2292
|
set Instance(value: string | undefined);
|
|
1954
|
-
Status:
|
|
2293
|
+
Status: Nullable_1<System_Internal.Int32>;
|
|
1955
2294
|
get Title(): string | undefined;
|
|
1956
2295
|
set Title(value: string | undefined);
|
|
1957
2296
|
get Type(): string | undefined;
|
|
@@ -1966,7 +2305,14 @@ export const ProblemDetails: {
|
|
|
1966
2305
|
|
|
1967
2306
|
export type ProblemDetails = ProblemDetails$instance;
|
|
1968
2307
|
|
|
1969
|
-
export interface ProducesAttribute$instance extends Attribute, IFilterMetadata {
|
|
2308
|
+
export interface ProducesAttribute$instance extends Attribute, IFilterMetadata, Microsoft_AspNetCore_Mvc_Filters_Internal.IResultFilter$instance {
|
|
2309
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ProducesAttribute: never;
|
|
2310
|
+
|
|
2311
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiResponseMetadataProvider: never;
|
|
2312
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2313
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
2314
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IResultFilter: never;
|
|
2315
|
+
|
|
1970
2316
|
ContentTypes: MediaTypeCollection;
|
|
1971
2317
|
get Description(): string | undefined;
|
|
1972
2318
|
set Description(value: string | undefined);
|
|
@@ -1991,12 +2337,17 @@ export interface __ProducesAttribute$views {
|
|
|
1991
2337
|
As_IApiResponseMetadataProvider(): Microsoft_AspNetCore_Mvc_ApiExplorer_Internal.IApiResponseMetadataProvider$instance;
|
|
1992
2338
|
}
|
|
1993
2339
|
|
|
1994
|
-
export interface ProducesAttribute$instance extends Microsoft_AspNetCore_Mvc_Filters_Internal.IResultFilter$instance {}
|
|
1995
|
-
|
|
1996
2340
|
export type ProducesAttribute = ProducesAttribute$instance & __ProducesAttribute$views;
|
|
1997
2341
|
|
|
1998
2342
|
|
|
1999
2343
|
export interface ProducesAttribute_1$instance<T> extends ProducesAttribute$instance, IFilterMetadata {
|
|
2344
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ProducesAttribute_1: never;
|
|
2345
|
+
|
|
2346
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiResponseMetadataProvider: never;
|
|
2347
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2348
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
2349
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IResultFilter: never;
|
|
2350
|
+
|
|
2000
2351
|
OnResultExecuted(context: ResultExecutedContext): void;
|
|
2001
2352
|
OnResultExecuting(context: ResultExecutingContext): void;
|
|
2002
2353
|
SetContentTypes(contentTypes: MediaTypeCollection): void;
|
|
@@ -2018,6 +2369,12 @@ export type ProducesAttribute_1<T> = ProducesAttribute_1$instance<T> & __Produce
|
|
|
2018
2369
|
|
|
2019
2370
|
|
|
2020
2371
|
export interface ProducesDefaultResponseTypeAttribute$instance extends Attribute, IFilterMetadata {
|
|
2372
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ProducesDefaultResponseTypeAttribute: never;
|
|
2373
|
+
|
|
2374
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiDefaultResponseMetadataProvider: never;
|
|
2375
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiResponseMetadataProvider: never;
|
|
2376
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2377
|
+
|
|
2021
2378
|
get Description(): string | undefined;
|
|
2022
2379
|
set Description(value: string | undefined);
|
|
2023
2380
|
readonly StatusCode: int;
|
|
@@ -2039,6 +2396,8 @@ export type ProducesDefaultResponseTypeAttribute = ProducesDefaultResponseTypeAt
|
|
|
2039
2396
|
|
|
2040
2397
|
|
|
2041
2398
|
export interface ProducesErrorResponseTypeAttribute$instance extends Attribute {
|
|
2399
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ProducesErrorResponseTypeAttribute: never;
|
|
2400
|
+
|
|
2042
2401
|
readonly Type: Type;
|
|
2043
2402
|
}
|
|
2044
2403
|
|
|
@@ -2051,6 +2410,11 @@ export const ProducesErrorResponseTypeAttribute: {
|
|
|
2051
2410
|
export type ProducesErrorResponseTypeAttribute = ProducesErrorResponseTypeAttribute$instance;
|
|
2052
2411
|
|
|
2053
2412
|
export interface ProducesResponseTypeAttribute$instance extends Attribute, IFilterMetadata {
|
|
2413
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ProducesResponseTypeAttribute: never;
|
|
2414
|
+
|
|
2415
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiResponseMetadataProvider: never;
|
|
2416
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2417
|
+
|
|
2054
2418
|
get Description(): string | undefined;
|
|
2055
2419
|
set Description(value: string | undefined);
|
|
2056
2420
|
StatusCode: int;
|
|
@@ -2073,6 +2437,11 @@ export type ProducesResponseTypeAttribute = ProducesResponseTypeAttribute$instan
|
|
|
2073
2437
|
|
|
2074
2438
|
|
|
2075
2439
|
export interface ProducesResponseTypeAttribute_1$instance<T> extends ProducesResponseTypeAttribute$instance, IFilterMetadata {
|
|
2440
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ProducesResponseTypeAttribute_1: never;
|
|
2441
|
+
|
|
2442
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiResponseMetadataProvider: never;
|
|
2443
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2444
|
+
|
|
2076
2445
|
SetContentTypes(contentTypes: MediaTypeCollection): void;
|
|
2077
2446
|
}
|
|
2078
2447
|
|
|
@@ -2090,7 +2459,12 @@ export interface __ProducesResponseTypeAttribute_1$views<T> {
|
|
|
2090
2459
|
export type ProducesResponseTypeAttribute_1<T> = ProducesResponseTypeAttribute_1$instance<T> & __ProducesResponseTypeAttribute_1$views<T>;
|
|
2091
2460
|
|
|
2092
2461
|
|
|
2093
|
-
export interface RedirectResult$instance extends ActionResult$instance, IKeepTempDataResult {
|
|
2462
|
+
export interface RedirectResult$instance extends ActionResult$instance, IKeepTempDataResult, Microsoft_AspNetCore_Mvc_ViewFeatures_Internal.IKeepTempDataResult$instance {
|
|
2463
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_RedirectResult: never;
|
|
2464
|
+
|
|
2465
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2466
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ViewFeatures_IKeepTempDataResult: never;
|
|
2467
|
+
|
|
2094
2468
|
Permanent: boolean;
|
|
2095
2469
|
PreserveMethod: boolean;
|
|
2096
2470
|
Url: string;
|
|
@@ -2111,12 +2485,15 @@ export interface __RedirectResult$views {
|
|
|
2111
2485
|
As_IActionResult(): IActionResult$instance;
|
|
2112
2486
|
}
|
|
2113
2487
|
|
|
2114
|
-
export interface RedirectResult$instance extends Microsoft_AspNetCore_Mvc_ViewFeatures_Internal.IKeepTempDataResult$instance {}
|
|
2115
|
-
|
|
2116
2488
|
export type RedirectResult = RedirectResult$instance & __RedirectResult$views;
|
|
2117
2489
|
|
|
2118
2490
|
|
|
2119
|
-
export interface RedirectToActionResult$instance extends ActionResult$instance, IKeepTempDataResult {
|
|
2491
|
+
export interface RedirectToActionResult$instance extends ActionResult$instance, IKeepTempDataResult, Microsoft_AspNetCore_Mvc_ViewFeatures_Internal.IKeepTempDataResult$instance {
|
|
2492
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_RedirectToActionResult: never;
|
|
2493
|
+
|
|
2494
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2495
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ViewFeatures_IKeepTempDataResult: never;
|
|
2496
|
+
|
|
2120
2497
|
get ActionName(): string | undefined;
|
|
2121
2498
|
set ActionName(value: string | undefined);
|
|
2122
2499
|
get ControllerName(): string | undefined;
|
|
@@ -2147,12 +2524,15 @@ export interface __RedirectToActionResult$views {
|
|
|
2147
2524
|
As_IActionResult(): IActionResult$instance;
|
|
2148
2525
|
}
|
|
2149
2526
|
|
|
2150
|
-
export interface RedirectToActionResult$instance extends Microsoft_AspNetCore_Mvc_ViewFeatures_Internal.IKeepTempDataResult$instance {}
|
|
2151
|
-
|
|
2152
2527
|
export type RedirectToActionResult = RedirectToActionResult$instance & __RedirectToActionResult$views;
|
|
2153
2528
|
|
|
2154
2529
|
|
|
2155
|
-
export interface RedirectToPageResult$instance extends ActionResult$instance, IKeepTempDataResult {
|
|
2530
|
+
export interface RedirectToPageResult$instance extends ActionResult$instance, IKeepTempDataResult, Microsoft_AspNetCore_Mvc_ViewFeatures_Internal.IKeepTempDataResult$instance {
|
|
2531
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_RedirectToPageResult: never;
|
|
2532
|
+
|
|
2533
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2534
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ViewFeatures_IKeepTempDataResult: never;
|
|
2535
|
+
|
|
2156
2536
|
get Fragment(): string | undefined;
|
|
2157
2537
|
set Fragment(value: string | undefined);
|
|
2158
2538
|
get Host(): string | undefined;
|
|
@@ -2190,12 +2570,15 @@ export interface __RedirectToPageResult$views {
|
|
|
2190
2570
|
As_IActionResult(): IActionResult$instance;
|
|
2191
2571
|
}
|
|
2192
2572
|
|
|
2193
|
-
export interface RedirectToPageResult$instance extends Microsoft_AspNetCore_Mvc_ViewFeatures_Internal.IKeepTempDataResult$instance {}
|
|
2194
|
-
|
|
2195
2573
|
export type RedirectToPageResult = RedirectToPageResult$instance & __RedirectToPageResult$views;
|
|
2196
2574
|
|
|
2197
2575
|
|
|
2198
|
-
export interface RedirectToRouteResult$instance extends ActionResult$instance, IKeepTempDataResult {
|
|
2576
|
+
export interface RedirectToRouteResult$instance extends ActionResult$instance, IKeepTempDataResult, Microsoft_AspNetCore_Mvc_ViewFeatures_Internal.IKeepTempDataResult$instance {
|
|
2577
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_RedirectToRouteResult: never;
|
|
2578
|
+
|
|
2579
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2580
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ViewFeatures_IKeepTempDataResult: never;
|
|
2581
|
+
|
|
2199
2582
|
get Fragment(): string | undefined;
|
|
2200
2583
|
set Fragment(value: string | undefined);
|
|
2201
2584
|
Permanent: boolean;
|
|
@@ -2225,12 +2608,14 @@ export interface __RedirectToRouteResult$views {
|
|
|
2225
2608
|
As_IActionResult(): IActionResult$instance;
|
|
2226
2609
|
}
|
|
2227
2610
|
|
|
2228
|
-
export interface RedirectToRouteResult$instance extends Microsoft_AspNetCore_Mvc_ViewFeatures_Internal.IKeepTempDataResult$instance {}
|
|
2229
|
-
|
|
2230
2611
|
export type RedirectToRouteResult = RedirectToRouteResult$instance & __RedirectToRouteResult$views;
|
|
2231
2612
|
|
|
2232
2613
|
|
|
2233
2614
|
export interface RemoteAttribute$instance extends RemoteAttributeBase$instance {
|
|
2615
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_RemoteAttribute: never;
|
|
2616
|
+
|
|
2617
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_Validation_IClientModelValidator: never;
|
|
2618
|
+
|
|
2234
2619
|
AddValidation(context: ClientModelValidationContext): void;
|
|
2235
2620
|
GetUrl(context: ClientModelValidationContext): string;
|
|
2236
2621
|
}
|
|
@@ -2250,7 +2635,11 @@ export interface __RemoteAttribute$views {
|
|
|
2250
2635
|
export type RemoteAttribute = RemoteAttribute$instance & __RemoteAttribute$views;
|
|
2251
2636
|
|
|
2252
2637
|
|
|
2253
|
-
export interface RemoteAttributeBase$instance extends ValidationAttribute {
|
|
2638
|
+
export interface RemoteAttributeBase$instance extends ValidationAttribute, Microsoft_AspNetCore_Mvc_ModelBinding_Validation_Internal.IClientModelValidator$instance {
|
|
2639
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_RemoteAttributeBase: never;
|
|
2640
|
+
|
|
2641
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_Validation_IClientModelValidator: never;
|
|
2642
|
+
|
|
2254
2643
|
AdditionalFields: string;
|
|
2255
2644
|
get HttpMethod(): string | undefined;
|
|
2256
2645
|
set HttpMethod(value: string | undefined);
|
|
@@ -2271,12 +2660,17 @@ export interface __RemoteAttributeBase$views {
|
|
|
2271
2660
|
As_IClientModelValidator(): Microsoft_AspNetCore_Mvc_ModelBinding_Validation_Internal.IClientModelValidator$instance;
|
|
2272
2661
|
}
|
|
2273
2662
|
|
|
2274
|
-
export interface RemoteAttributeBase$instance extends Microsoft_AspNetCore_Mvc_ModelBinding_Validation_Internal.IClientModelValidator$instance {}
|
|
2275
|
-
|
|
2276
2663
|
export type RemoteAttributeBase = RemoteAttributeBase$instance & __RemoteAttributeBase$views;
|
|
2277
2664
|
|
|
2278
2665
|
|
|
2279
|
-
export interface RequestFormLimitsAttribute$instance extends Attribute, IFilterMetadata {
|
|
2666
|
+
export interface RequestFormLimitsAttribute$instance extends Attribute, IFilterMetadata, Microsoft_AspNetCore_Mvc_Filters_Internal.IFilterFactory$instance {
|
|
2667
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_RequestFormLimitsAttribute: never;
|
|
2668
|
+
|
|
2669
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IFormOptionsMetadata: never;
|
|
2670
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
2671
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2672
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
2673
|
+
|
|
2280
2674
|
BufferBody: boolean;
|
|
2281
2675
|
BufferBodyLengthLimit: long;
|
|
2282
2676
|
readonly IsReusable: boolean;
|
|
@@ -2304,12 +2698,17 @@ export interface __RequestFormLimitsAttribute$views {
|
|
|
2304
2698
|
As_IOrderedFilter(): Microsoft_AspNetCore_Mvc_Filters_Internal.IOrderedFilter$instance;
|
|
2305
2699
|
}
|
|
2306
2700
|
|
|
2307
|
-
export interface RequestFormLimitsAttribute$instance extends Microsoft_AspNetCore_Mvc_Filters_Internal.IFilterFactory$instance {}
|
|
2308
|
-
|
|
2309
2701
|
export type RequestFormLimitsAttribute = RequestFormLimitsAttribute$instance & __RequestFormLimitsAttribute$views;
|
|
2310
2702
|
|
|
2311
2703
|
|
|
2312
|
-
export interface RequestSizeLimitAttribute$instance extends Attribute, IFilterMetadata {
|
|
2704
|
+
export interface RequestSizeLimitAttribute$instance extends Attribute, IFilterMetadata, Microsoft_AspNetCore_Http_Metadata_Internal.IRequestSizeLimitMetadata$instance, Microsoft_AspNetCore_Mvc_Filters_Internal.IFilterFactory$instance {
|
|
2705
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_RequestSizeLimitAttribute: never;
|
|
2706
|
+
|
|
2707
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IRequestSizeLimitMetadata: never;
|
|
2708
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
2709
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2710
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
2711
|
+
|
|
2313
2712
|
readonly IsReusable: boolean;
|
|
2314
2713
|
Order: int;
|
|
2315
2714
|
CreateInstance(serviceProvider: IServiceProvider): IFilterMetadata;
|
|
@@ -2327,12 +2726,16 @@ export interface __RequestSizeLimitAttribute$views {
|
|
|
2327
2726
|
As_IOrderedFilter(): Microsoft_AspNetCore_Mvc_Filters_Internal.IOrderedFilter$instance;
|
|
2328
2727
|
}
|
|
2329
2728
|
|
|
2330
|
-
export interface RequestSizeLimitAttribute$instance extends Microsoft_AspNetCore_Http_Metadata_Internal.IRequestSizeLimitMetadata$instance, Microsoft_AspNetCore_Mvc_Filters_Internal.IFilterFactory$instance {}
|
|
2331
|
-
|
|
2332
2729
|
export type RequestSizeLimitAttribute = RequestSizeLimitAttribute$instance & __RequestSizeLimitAttribute$views;
|
|
2333
2730
|
|
|
2334
2731
|
|
|
2335
|
-
export interface RequireHttpsAttribute$instance extends Attribute, IFilterMetadata {
|
|
2732
|
+
export interface RequireHttpsAttribute$instance extends Attribute, IFilterMetadata, Microsoft_AspNetCore_Mvc_Filters_Internal.IAuthorizationFilter$instance {
|
|
2733
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_RequireHttpsAttribute: never;
|
|
2734
|
+
|
|
2735
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IAuthorizationFilter: never;
|
|
2736
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2737
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
2738
|
+
|
|
2336
2739
|
Order: int;
|
|
2337
2740
|
Permanent: boolean;
|
|
2338
2741
|
HandleNonHttpsRequest(filterContext: AuthorizationFilterContext): void;
|
|
@@ -2350,12 +2753,16 @@ export interface __RequireHttpsAttribute$views {
|
|
|
2350
2753
|
As_IOrderedFilter(): Microsoft_AspNetCore_Mvc_Filters_Internal.IOrderedFilter$instance;
|
|
2351
2754
|
}
|
|
2352
2755
|
|
|
2353
|
-
export interface RequireHttpsAttribute$instance extends Microsoft_AspNetCore_Mvc_Filters_Internal.IAuthorizationFilter$instance {}
|
|
2354
|
-
|
|
2355
2756
|
export type RequireHttpsAttribute = RequireHttpsAttribute$instance & __RequireHttpsAttribute$views;
|
|
2356
2757
|
|
|
2357
2758
|
|
|
2358
|
-
export interface ResponseCacheAttribute$instance extends Attribute, IFilterMetadata {
|
|
2759
|
+
export interface ResponseCacheAttribute$instance extends Attribute, IFilterMetadata, Microsoft_AspNetCore_Mvc_Filters_Internal.IFilterFactory$instance {
|
|
2760
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ResponseCacheAttribute: never;
|
|
2761
|
+
|
|
2762
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
2763
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2764
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
2765
|
+
|
|
2359
2766
|
get CacheProfileName(): string | undefined;
|
|
2360
2767
|
set CacheProfileName(value: string | undefined);
|
|
2361
2768
|
Duration: int;
|
|
@@ -2382,12 +2789,14 @@ export interface __ResponseCacheAttribute$views {
|
|
|
2382
2789
|
As_IOrderedFilter(): Microsoft_AspNetCore_Mvc_Filters_Internal.IOrderedFilter$instance;
|
|
2383
2790
|
}
|
|
2384
2791
|
|
|
2385
|
-
export interface ResponseCacheAttribute$instance extends Microsoft_AspNetCore_Mvc_Filters_Internal.IFilterFactory$instance {}
|
|
2386
|
-
|
|
2387
2792
|
export type ResponseCacheAttribute = ResponseCacheAttribute$instance & __ResponseCacheAttribute$views;
|
|
2388
2793
|
|
|
2389
2794
|
|
|
2390
2795
|
export interface RouteAttribute$instance extends Attribute {
|
|
2796
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_RouteAttribute: never;
|
|
2797
|
+
|
|
2798
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IRouteTemplateProvider: never;
|
|
2799
|
+
|
|
2391
2800
|
get Name(): string | undefined;
|
|
2392
2801
|
set Name(value: string | undefined);
|
|
2393
2802
|
Order: int;
|
|
@@ -2407,7 +2816,20 @@ export interface __RouteAttribute$views {
|
|
|
2407
2816
|
export type RouteAttribute = RouteAttribute$instance & __RouteAttribute$views;
|
|
2408
2817
|
|
|
2409
2818
|
|
|
2410
|
-
export interface SerializableError$instance extends
|
|
2819
|
+
export interface SerializableError$instance extends Dictionary_2<System_Internal.String, unknown> {
|
|
2820
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_SerializableError: never;
|
|
2821
|
+
|
|
2822
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
2823
|
+
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
2824
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2825
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2826
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyDictionary_2: never;
|
|
2827
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
2828
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
2829
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2830
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
2831
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2832
|
+
|
|
2411
2833
|
}
|
|
2412
2834
|
|
|
2413
2835
|
|
|
@@ -2420,6 +2842,12 @@ export const SerializableError: {
|
|
|
2420
2842
|
export type SerializableError = SerializableError$instance;
|
|
2421
2843
|
|
|
2422
2844
|
export interface ServiceFilterAttribute$instance extends Attribute, IFilterMetadata {
|
|
2845
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ServiceFilterAttribute: never;
|
|
2846
|
+
|
|
2847
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
2848
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2849
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
2850
|
+
|
|
2423
2851
|
IsReusable: boolean;
|
|
2424
2852
|
Order: int;
|
|
2425
2853
|
readonly ServiceType: Type;
|
|
@@ -2441,6 +2869,12 @@ export type ServiceFilterAttribute = ServiceFilterAttribute$instance & __Service
|
|
|
2441
2869
|
|
|
2442
2870
|
|
|
2443
2871
|
export interface ServiceFilterAttribute_1$instance<TFilter extends IFilterMetadata> extends ServiceFilterAttribute$instance, IFilterMetadata {
|
|
2872
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ServiceFilterAttribute_1: never;
|
|
2873
|
+
|
|
2874
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
2875
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2876
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
2877
|
+
|
|
2444
2878
|
CreateInstance(serviceProvider: IServiceProvider): IFilterMetadata;
|
|
2445
2879
|
}
|
|
2446
2880
|
|
|
@@ -2459,6 +2893,10 @@ export type ServiceFilterAttribute_1<TFilter extends IFilterMetadata> = ServiceF
|
|
|
2459
2893
|
|
|
2460
2894
|
|
|
2461
2895
|
export interface SignInResult$instance extends ActionResult$instance {
|
|
2896
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_SignInResult: never;
|
|
2897
|
+
|
|
2898
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2899
|
+
|
|
2462
2900
|
get AuthenticationScheme(): string | undefined;
|
|
2463
2901
|
set AuthenticationScheme(value: string | undefined);
|
|
2464
2902
|
Principal: ClaimsPrincipal;
|
|
@@ -2483,8 +2921,13 @@ export interface __SignInResult$views {
|
|
|
2483
2921
|
export type SignInResult = SignInResult$instance & __SignInResult$views;
|
|
2484
2922
|
|
|
2485
2923
|
|
|
2486
|
-
export interface SignOutResult$instance extends ActionResult$instance {
|
|
2487
|
-
|
|
2924
|
+
export interface SignOutResult$instance extends ActionResult$instance, Microsoft_AspNetCore_Http_Internal.IResult$instance {
|
|
2925
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_SignOutResult: never;
|
|
2926
|
+
|
|
2927
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IResult: never;
|
|
2928
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2929
|
+
|
|
2930
|
+
AuthenticationSchemes: IList_1<System_Internal.String>;
|
|
2488
2931
|
get Properties(): AuthenticationProperties | undefined;
|
|
2489
2932
|
set Properties(value: AuthenticationProperties | undefined);
|
|
2490
2933
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
@@ -2495,9 +2938,9 @@ export const SignOutResult: {
|
|
|
2495
2938
|
new(): SignOutResult;
|
|
2496
2939
|
new(properties: AuthenticationProperties): SignOutResult;
|
|
2497
2940
|
new(authenticationScheme: string): SignOutResult;
|
|
2498
|
-
new(authenticationSchemes:
|
|
2941
|
+
new(authenticationSchemes: IList_1<System_Internal.String>): SignOutResult;
|
|
2499
2942
|
new(authenticationScheme: string, properties: AuthenticationProperties): SignOutResult;
|
|
2500
|
-
new(authenticationSchemes:
|
|
2943
|
+
new(authenticationSchemes: IList_1<System_Internal.String>, properties: AuthenticationProperties): SignOutResult;
|
|
2501
2944
|
};
|
|
2502
2945
|
|
|
2503
2946
|
|
|
@@ -2506,12 +2949,16 @@ export interface __SignOutResult$views {
|
|
|
2506
2949
|
As_IActionResult(): IActionResult$instance;
|
|
2507
2950
|
}
|
|
2508
2951
|
|
|
2509
|
-
export interface SignOutResult$instance extends Microsoft_AspNetCore_Http_Internal.IResult$instance {}
|
|
2510
|
-
|
|
2511
2952
|
export type SignOutResult = SignOutResult$instance & __SignOutResult$views;
|
|
2512
2953
|
|
|
2513
2954
|
|
|
2514
|
-
export interface SkipStatusCodePagesAttribute$instance extends Attribute, IFilterMetadata, ISkipStatusCodePagesMetadata {
|
|
2955
|
+
export interface SkipStatusCodePagesAttribute$instance extends Attribute, IFilterMetadata, ISkipStatusCodePagesMetadata, Microsoft_AspNetCore_Http_Metadata_Internal.ISkipStatusCodePagesMetadata$instance, Microsoft_AspNetCore_Mvc_Filters_Internal.IResourceFilter$instance {
|
|
2956
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_SkipStatusCodePagesAttribute: never;
|
|
2957
|
+
|
|
2958
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_ISkipStatusCodePagesMetadata: never;
|
|
2959
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2960
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IResourceFilter: never;
|
|
2961
|
+
|
|
2515
2962
|
OnResourceExecuted(context: ResourceExecutedContext): void;
|
|
2516
2963
|
OnResourceExecuting(context: ResourceExecutingContext): void;
|
|
2517
2964
|
}
|
|
@@ -2526,12 +2973,16 @@ export interface __SkipStatusCodePagesAttribute$views {
|
|
|
2526
2973
|
As_IResourceFilter(): Microsoft_AspNetCore_Mvc_Filters_Internal.IResourceFilter$instance;
|
|
2527
2974
|
}
|
|
2528
2975
|
|
|
2529
|
-
export interface SkipStatusCodePagesAttribute$instance extends Microsoft_AspNetCore_Http_Metadata_Internal.ISkipStatusCodePagesMetadata$instance, Microsoft_AspNetCore_Mvc_Filters_Internal.IResourceFilter$instance {}
|
|
2530
|
-
|
|
2531
2976
|
export type SkipStatusCodePagesAttribute = SkipStatusCodePagesAttribute$instance & __SkipStatusCodePagesAttribute$views;
|
|
2532
2977
|
|
|
2533
2978
|
|
|
2534
2979
|
export interface StatusCodeResult$instance extends ActionResult$instance, IClientErrorActionResult {
|
|
2980
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_StatusCodeResult: never;
|
|
2981
|
+
|
|
2982
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2983
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IClientErrorActionResult: never;
|
|
2984
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
2985
|
+
|
|
2535
2986
|
readonly StatusCode: int;
|
|
2536
2987
|
ExecuteResult(context: ActionContext): void;
|
|
2537
2988
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
@@ -2552,6 +3003,8 @@ export type StatusCodeResult = StatusCodeResult$instance & __StatusCodeResult$vi
|
|
|
2552
3003
|
|
|
2553
3004
|
|
|
2554
3005
|
export interface TempDataAttribute$instance extends Attribute {
|
|
3006
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_TempDataAttribute: never;
|
|
3007
|
+
|
|
2555
3008
|
get Key(): string | undefined;
|
|
2556
3009
|
set Key(value: string | undefined);
|
|
2557
3010
|
}
|
|
@@ -2565,6 +3018,12 @@ export const TempDataAttribute: {
|
|
|
2565
3018
|
export type TempDataAttribute = TempDataAttribute$instance;
|
|
2566
3019
|
|
|
2567
3020
|
export interface TypeFilterAttribute$instance extends Attribute, IFilterMetadata {
|
|
3021
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_TypeFilterAttribute: never;
|
|
3022
|
+
|
|
3023
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
3024
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
3025
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
3026
|
+
|
|
2568
3027
|
get Arguments(): unknown[] | undefined;
|
|
2569
3028
|
set Arguments(value: unknown[] | undefined);
|
|
2570
3029
|
readonly ImplementationType: Type;
|
|
@@ -2588,6 +3047,12 @@ export type TypeFilterAttribute = TypeFilterAttribute$instance & __TypeFilterAtt
|
|
|
2588
3047
|
|
|
2589
3048
|
|
|
2590
3049
|
export interface TypeFilterAttribute_1$instance<TFilter extends IFilterMetadata> extends TypeFilterAttribute$instance, IFilterMetadata {
|
|
3050
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_TypeFilterAttribute_1: never;
|
|
3051
|
+
|
|
3052
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
3053
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
3054
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
3055
|
+
|
|
2591
3056
|
CreateInstance(serviceProvider: IServiceProvider): IFilterMetadata;
|
|
2592
3057
|
}
|
|
2593
3058
|
|
|
@@ -2606,6 +3071,11 @@ export type TypeFilterAttribute_1<TFilter extends IFilterMetadata> = TypeFilterA
|
|
|
2606
3071
|
|
|
2607
3072
|
|
|
2608
3073
|
export interface UnauthorizedObjectResult$instance extends ObjectResult$instance {
|
|
3074
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_UnauthorizedObjectResult: never;
|
|
3075
|
+
|
|
3076
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
3077
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
3078
|
+
|
|
2609
3079
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
2610
3080
|
}
|
|
2611
3081
|
|
|
@@ -2624,6 +3094,12 @@ export type UnauthorizedObjectResult = UnauthorizedObjectResult$instance & __Una
|
|
|
2624
3094
|
|
|
2625
3095
|
|
|
2626
3096
|
export interface UnauthorizedResult$instance extends StatusCodeResult$instance {
|
|
3097
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_UnauthorizedResult: never;
|
|
3098
|
+
|
|
3099
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
3100
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IClientErrorActionResult: never;
|
|
3101
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
3102
|
+
|
|
2627
3103
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
2628
3104
|
}
|
|
2629
3105
|
|
|
@@ -2642,6 +3118,11 @@ export type UnauthorizedResult = UnauthorizedResult$instance & __UnauthorizedRes
|
|
|
2642
3118
|
|
|
2643
3119
|
|
|
2644
3120
|
export interface UnprocessableEntityObjectResult$instance extends ObjectResult$instance {
|
|
3121
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_UnprocessableEntityObjectResult: never;
|
|
3122
|
+
|
|
3123
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
3124
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
3125
|
+
|
|
2645
3126
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
2646
3127
|
}
|
|
2647
3128
|
|
|
@@ -2661,6 +3142,12 @@ export type UnprocessableEntityObjectResult = UnprocessableEntityObjectResult$in
|
|
|
2661
3142
|
|
|
2662
3143
|
|
|
2663
3144
|
export interface UnprocessableEntityResult$instance extends StatusCodeResult$instance {
|
|
3145
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_UnprocessableEntityResult: never;
|
|
3146
|
+
|
|
3147
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
3148
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IClientErrorActionResult: never;
|
|
3149
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
3150
|
+
|
|
2664
3151
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
2665
3152
|
}
|
|
2666
3153
|
|
|
@@ -2679,6 +3166,12 @@ export type UnprocessableEntityResult = UnprocessableEntityResult$instance & __U
|
|
|
2679
3166
|
|
|
2680
3167
|
|
|
2681
3168
|
export interface UnsupportedMediaTypeResult$instance extends StatusCodeResult$instance {
|
|
3169
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_UnsupportedMediaTypeResult: never;
|
|
3170
|
+
|
|
3171
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
3172
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IClientErrorActionResult: never;
|
|
3173
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
3174
|
+
|
|
2682
3175
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
2683
3176
|
}
|
|
2684
3177
|
|
|
@@ -2696,7 +3189,13 @@ export interface __UnsupportedMediaTypeResult$views {
|
|
|
2696
3189
|
export type UnsupportedMediaTypeResult = UnsupportedMediaTypeResult$instance & __UnsupportedMediaTypeResult$views;
|
|
2697
3190
|
|
|
2698
3191
|
|
|
2699
|
-
export interface ValidateAntiForgeryTokenAttribute$instance extends Attribute, IFilterMetadata {
|
|
3192
|
+
export interface ValidateAntiForgeryTokenAttribute$instance extends Attribute, IFilterMetadata, Microsoft_AspNetCore_Mvc_Filters_Internal.IFilterFactory$instance {
|
|
3193
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ValidateAntiForgeryTokenAttribute: never;
|
|
3194
|
+
|
|
3195
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
3196
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
3197
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
3198
|
+
|
|
2700
3199
|
readonly IsReusable: boolean;
|
|
2701
3200
|
Order: int;
|
|
2702
3201
|
CreateInstance(serviceProvider: IServiceProvider): IFilterMetadata;
|
|
@@ -2713,26 +3212,28 @@ export interface __ValidateAntiForgeryTokenAttribute$views {
|
|
|
2713
3212
|
As_IOrderedFilter(): Microsoft_AspNetCore_Mvc_Filters_Internal.IOrderedFilter$instance;
|
|
2714
3213
|
}
|
|
2715
3214
|
|
|
2716
|
-
export interface ValidateAntiForgeryTokenAttribute$instance extends Microsoft_AspNetCore_Mvc_Filters_Internal.IFilterFactory$instance {}
|
|
2717
|
-
|
|
2718
3215
|
export type ValidateAntiForgeryTokenAttribute = ValidateAntiForgeryTokenAttribute$instance & __ValidateAntiForgeryTokenAttribute$views;
|
|
2719
3216
|
|
|
2720
3217
|
|
|
2721
3218
|
export interface ValidationProblemDetails$instance extends HttpValidationProblemDetails {
|
|
2722
|
-
|
|
3219
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ValidationProblemDetails: never;
|
|
3220
|
+
|
|
3221
|
+
Errors: IDictionary_2<System_Internal.String, string[]>;
|
|
2723
3222
|
}
|
|
2724
3223
|
|
|
2725
3224
|
|
|
2726
3225
|
export const ValidationProblemDetails: {
|
|
2727
3226
|
new(): ValidationProblemDetails;
|
|
2728
3227
|
new(modelState: ModelStateDictionary): ValidationProblemDetails;
|
|
2729
|
-
new(errors:
|
|
3228
|
+
new(errors: IDictionary_2<System_Internal.String, string[]>): ValidationProblemDetails;
|
|
2730
3229
|
};
|
|
2731
3230
|
|
|
2732
3231
|
|
|
2733
3232
|
export type ValidationProblemDetails = ValidationProblemDetails$instance;
|
|
2734
3233
|
|
|
2735
3234
|
export interface ViewComponent$instance {
|
|
3235
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ViewComponent: never;
|
|
3236
|
+
|
|
2736
3237
|
readonly HttpContext: HttpContext;
|
|
2737
3238
|
readonly ModelState: ModelStateDictionary;
|
|
2738
3239
|
readonly Request: HttpRequest;
|
|
@@ -2761,6 +3262,8 @@ export const ViewComponent: (abstract new() => ViewComponent) & {
|
|
|
2761
3262
|
export type ViewComponent = ViewComponent$instance;
|
|
2762
3263
|
|
|
2763
3264
|
export interface ViewComponentAttribute$instance extends Attribute {
|
|
3265
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ViewComponentAttribute: never;
|
|
3266
|
+
|
|
2764
3267
|
Name: string;
|
|
2765
3268
|
}
|
|
2766
3269
|
|
|
@@ -2773,12 +3276,17 @@ export const ViewComponentAttribute: {
|
|
|
2773
3276
|
export type ViewComponentAttribute = ViewComponentAttribute$instance;
|
|
2774
3277
|
|
|
2775
3278
|
export interface ViewComponentResult$instance extends ActionResult$instance {
|
|
3279
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ViewComponentResult: never;
|
|
3280
|
+
|
|
3281
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
3282
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
3283
|
+
|
|
2776
3284
|
get Arguments(): unknown | undefined;
|
|
2777
3285
|
set Arguments(value: unknown | undefined);
|
|
2778
3286
|
get ContentType(): string | undefined;
|
|
2779
3287
|
set ContentType(value: string | undefined);
|
|
2780
3288
|
readonly Model: unknown | undefined;
|
|
2781
|
-
StatusCode:
|
|
3289
|
+
StatusCode: Nullable_1<System_Internal.Int32>;
|
|
2782
3290
|
TempData: ITempDataDictionary;
|
|
2783
3291
|
get ViewComponentName(): string | undefined;
|
|
2784
3292
|
set ViewComponentName(value: string | undefined);
|
|
@@ -2803,6 +3311,8 @@ export type ViewComponentResult = ViewComponentResult$instance & __ViewComponent
|
|
|
2803
3311
|
|
|
2804
3312
|
|
|
2805
3313
|
export interface ViewDataAttribute$instance extends Attribute {
|
|
3314
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ViewDataAttribute: never;
|
|
3315
|
+
|
|
2806
3316
|
get Key(): string | undefined;
|
|
2807
3317
|
set Key(value: string | undefined);
|
|
2808
3318
|
}
|
|
@@ -2816,10 +3326,15 @@ export const ViewDataAttribute: {
|
|
|
2816
3326
|
export type ViewDataAttribute = ViewDataAttribute$instance;
|
|
2817
3327
|
|
|
2818
3328
|
export interface ViewResult$instance extends ActionResult$instance {
|
|
3329
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ViewResult: never;
|
|
3330
|
+
|
|
3331
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
3332
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
3333
|
+
|
|
2819
3334
|
get ContentType(): string | undefined;
|
|
2820
3335
|
set ContentType(value: string | undefined);
|
|
2821
3336
|
readonly Model: unknown | undefined;
|
|
2822
|
-
StatusCode:
|
|
3337
|
+
StatusCode: Nullable_1<System_Internal.Int32>;
|
|
2823
3338
|
TempData: ITempDataDictionary;
|
|
2824
3339
|
ViewData: ViewDataDictionary;
|
|
2825
3340
|
get ViewEngine(): IViewEngine | undefined;
|
|
@@ -2844,6 +3359,10 @@ export type ViewResult = ViewResult$instance & __ViewResult$views;
|
|
|
2844
3359
|
|
|
2845
3360
|
|
|
2846
3361
|
export interface VirtualFileResult$instance extends FileResult$instance {
|
|
3362
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_VirtualFileResult: never;
|
|
3363
|
+
|
|
3364
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
3365
|
+
|
|
2847
3366
|
FileName: string;
|
|
2848
3367
|
get FileProvider(): IFileProvider | undefined;
|
|
2849
3368
|
set FileProvider(value: IFileProvider | undefined);
|