@tsonic/aspnetcore 10.0.2 → 10.0.5
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.Antiforgery/internal/index.d.ts +12 -0
- package/Microsoft.AspNetCore.Authentication/internal/index.d.ts +70 -2
- package/Microsoft.AspNetCore.Authentication.Cookies/internal/index.d.ts +12 -0
- package/Microsoft.AspNetCore.Authentication.OAuth/internal/index.d.ts +5 -0
- package/Microsoft.AspNetCore.Authentication.OAuth.Claims/internal/index.d.ts +3 -0
- package/Microsoft.AspNetCore.Authorization/internal/index.d.ts +40 -0
- package/Microsoft.AspNetCore.Authorization.Infrastructure/internal/index.d.ts +19 -0
- package/Microsoft.AspNetCore.Authorization.Policy/internal/index.d.ts +6 -0
- package/Microsoft.AspNetCore.Builder/internal/index.d.ts +40 -2
- package/Microsoft.AspNetCore.Components/internal/index.d.ts +74 -1
- package/Microsoft.AspNetCore.Components.Authorization/internal/index.d.ts +18 -1
- package/Microsoft.AspNetCore.Components.Endpoints/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Components.Forms/internal/index.d.ts +110 -5
- package/Microsoft.AspNetCore.Components.Forms.Mapping/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Components.Forms.Mapping.d.ts +3 -0
- package/Microsoft.AspNetCore.Components.HtmlRendering.Infrastructure/internal/index.d.ts +3 -0
- package/Microsoft.AspNetCore.Components.Infrastructure.d.ts +3 -0
- package/Microsoft.AspNetCore.Components.RenderTree/internal/index.d.ts +9 -0
- package/Microsoft.AspNetCore.Components.Rendering/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Components.Routing/internal/index.d.ts +28 -3
- package/Microsoft.AspNetCore.Components.Sections/internal/index.d.ts +8 -2
- package/Microsoft.AspNetCore.Components.Server/internal/index.d.ts +9 -0
- package/Microsoft.AspNetCore.Components.Web/internal/index.d.ts +30 -0
- package/Microsoft.AspNetCore.Components.Web.Internal/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Components.Web.Virtualization/internal/index.d.ts +7 -1
- package/Microsoft.AspNetCore.Connections/internal/index.d.ts +54 -1
- package/Microsoft.AspNetCore.Connections.Abstractions/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Connections.Features/internal/index.d.ts +44 -0
- package/Microsoft.AspNetCore.Cors/internal/index.d.ts +9 -0
- package/Microsoft.AspNetCore.Cors.Infrastructure/internal/index.d.ts +16 -0
- package/Microsoft.AspNetCore.DataProtection/internal/index.d.ts +19 -0
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption/internal/index.d.ts +12 -0
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel/internal/index.d.ts +20 -0
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel.d.ts +3 -0
- package/Microsoft.AspNetCore.DataProtection.Infrastructure/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.DataProtection.Internal/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.DataProtection.KeyManagement/internal/index.d.ts +11 -0
- package/Microsoft.AspNetCore.DataProtection.KeyManagement.Internal/internal/index.d.ts +10 -0
- package/Microsoft.AspNetCore.DataProtection.Repositories/internal/index.d.ts +12 -0
- package/Microsoft.AspNetCore.DataProtection.XmlEncryption/internal/index.d.ts +24 -0
- package/Microsoft.AspNetCore.Diagnostics/internal/index.d.ts +21 -0
- package/Microsoft.AspNetCore.Hosting/internal/index.d.ts +32 -0
- package/Microsoft.AspNetCore.Hosting.Builder/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Hosting.Infrastructure/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Hosting.Server/internal/index.d.ts +10 -0
- package/Microsoft.AspNetCore.Hosting.Server.Abstractions/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Hosting.Server.Features/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Html/internal/index.d.ts +16 -0
- package/Microsoft.AspNetCore.Http/internal/index.d.ts +136 -1
- package/Microsoft.AspNetCore.Http.Connections/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Http.Connections.Features/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Http.Extensions/internal/index.d.ts +3 -0
- package/Microsoft.AspNetCore.Http.Features/internal/index.d.ts +113 -1
- package/Microsoft.AspNetCore.Http.Features.Authentication/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Http.HttpResults/internal/index.d.ts +207 -2
- package/Microsoft.AspNetCore.Http.Metadata/internal/index.d.ts +46 -0
- package/Microsoft.AspNetCore.Http.Timeouts/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.HttpLogging/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Identity/internal/index.d.ts +153 -0
- package/Microsoft.AspNetCore.Identity.UI.Services/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Localization/internal/index.d.ts +16 -0
- package/Microsoft.AspNetCore.Localization.Routing/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Mvc/internal/index.d.ts +348 -1
- package/Microsoft.AspNetCore.Mvc.Abstractions/internal/index.d.ts +6 -0
- package/Microsoft.AspNetCore.Mvc.ActionConstraints/internal/index.d.ts +14 -0
- package/Microsoft.AspNetCore.Mvc.ApiExplorer/internal/index.d.ts +22 -0
- package/Microsoft.AspNetCore.Mvc.ApplicationModels/internal/index.d.ts +97 -0
- package/Microsoft.AspNetCore.Mvc.ApplicationParts/internal/index.d.ts +14 -0
- package/Microsoft.AspNetCore.Mvc.Authorization/internal/index.d.ts +9 -0
- package/Microsoft.AspNetCore.Mvc.Controllers/internal/index.d.ts +19 -0
- package/Microsoft.AspNetCore.Mvc.Core.Infrastructure/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Mvc.Cors/internal/index.d.ts +5 -0
- package/Microsoft.AspNetCore.Mvc.DataAnnotations/internal/index.d.ts +17 -0
- package/Microsoft.AspNetCore.Mvc.Diagnostics/internal/index.d.ts +259 -0
- package/Microsoft.AspNetCore.Mvc.Filters/internal/index.d.ts +64 -0
- package/Microsoft.AspNetCore.Mvc.Formatters/internal/index.d.ts +71 -0
- package/Microsoft.AspNetCore.Mvc.Formatters.Xml/internal/index.d.ts +36 -3
- package/Microsoft.AspNetCore.Mvc.Formatters.Xml.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.Infrastructure/internal/index.d.ts +70 -0
- package/Microsoft.AspNetCore.Mvc.Localization/internal/index.d.ts +21 -0
- package/Microsoft.AspNetCore.Mvc.ModelBinding/internal/index.d.ts +171 -1
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Binders/internal/index.d.ts +81 -0
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Metadata/internal/index.d.ts +32 -0
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Validation/internal/index.d.ts +29 -0
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Validation.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.Razor/internal/index.d.ts +35 -0
- package/Microsoft.AspNetCore.Mvc.Razor.Compilation/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Mvc.Razor.TagHelpers/internal/index.d.ts +19 -0
- package/Microsoft.AspNetCore.Mvc.RazorPages/internal/index.d.ts +21 -0
- package/Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure/internal/index.d.ts +21 -0
- package/Microsoft.AspNetCore.Mvc.Rendering/internal/index.d.ts +16 -0
- package/Microsoft.AspNetCore.Mvc.Routing/internal/index.d.ts +22 -0
- package/Microsoft.AspNetCore.Mvc.TagHelpers/internal/index.d.ts +63 -0
- package/Microsoft.AspNetCore.Mvc.TagHelpers.Cache/internal/index.d.ts +14 -0
- package/Microsoft.AspNetCore.Mvc.ViewComponents/internal/index.d.ts +36 -0
- package/Microsoft.AspNetCore.Mvc.ViewEngines/internal/index.d.ts +9 -0
- package/Microsoft.AspNetCore.Mvc.ViewFeatures/internal/index.d.ts +78 -0
- package/Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.OutputCaching/internal/index.d.ts +8 -0
- package/Microsoft.AspNetCore.RateLimiting/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Razor.Hosting/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Razor.TagHelpers/internal/index.d.ts +41 -0
- package/Microsoft.AspNetCore.RequestDecompression/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.ResponseCaching/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.ResponseCompression/internal/index.d.ts +23 -0
- package/Microsoft.AspNetCore.Rewrite/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Routing/internal/index.d.ts +104 -0
- package/Microsoft.AspNetCore.Routing.Constraints/internal/index.d.ts +112 -0
- package/Microsoft.AspNetCore.Routing.Matching/internal/index.d.ts +20 -0
- package/Microsoft.AspNetCore.Routing.Patterns/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Routing.Tree/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Server.HttpSys/internal/index.d.ts +18 -0
- package/Microsoft.AspNetCore.Server.IIS/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Server.IISIntegration/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Server.Kestrel.Core/internal/index.d.ts +8 -0
- package/Microsoft.AspNetCore.Server.Kestrel.Core.Features/internal/index.d.ts +14 -0
- package/Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http/internal/index.d.ts +6 -0
- package/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/internal/index.d.ts +5 -0
- package/Microsoft.AspNetCore.Session/internal/index.d.ts +8 -0
- package/Microsoft.AspNetCore.SignalR/internal/index.d.ts +52 -0
- package/Microsoft.AspNetCore.SignalR.Protocol/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.StaticAssets/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.StaticFiles/internal/index.d.ts +8 -0
- package/Microsoft.AspNetCore.WebSockets.d.ts +3 -0
- package/Microsoft.AspNetCore.WebUtilities/internal/index.d.ts +16 -0
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +10 -0
- package/Microsoft.Extensions.Hosting.d.ts +3 -0
- package/Microsoft.JSInterop/internal/index.d.ts +32 -1
- package/Microsoft.JSInterop.Implementation/internal/index.d.ts +12 -0
- package/Microsoft.JSInterop.Infrastructure/internal/index.d.ts +2 -0
- package/Microsoft.Net.Http.Headers/internal/index.d.ts +4 -0
- package/System.Formats.Cbor/internal/index.d.ts +2 -0
- package/System.Security.Claims.d.ts +3 -0
- package/System.Threading.RateLimiting/internal/index.d.ts +25 -0
- package/__internal/extensions/index.d.ts +818 -529
- package/package.json +1 -1
|
@@ -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,6 +129,8 @@ export interface IUrlHelper$instance {
|
|
|
119
129
|
export type IUrlHelper = IUrlHelper$instance;
|
|
120
130
|
|
|
121
131
|
export interface IViewComponentHelper$instance {
|
|
132
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IViewComponentHelper: never;
|
|
133
|
+
|
|
122
134
|
InvokeAsync(name: string, arguments: unknown): Task<IHtmlContent>;
|
|
123
135
|
InvokeAsync(componentType: Type, arguments: unknown): Task<IHtmlContent>;
|
|
124
136
|
}
|
|
@@ -127,6 +139,8 @@ export interface IViewComponentHelper$instance {
|
|
|
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,9 @@ 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_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
153
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
154
|
+
|
|
138
155
|
get ActionName(): string | undefined;
|
|
139
156
|
set ActionName(value: string | undefined);
|
|
140
157
|
get ControllerName(): string | undefined;
|
|
@@ -162,6 +179,9 @@ export type AcceptedAtActionResult = AcceptedAtActionResult$instance & __Accepte
|
|
|
162
179
|
|
|
163
180
|
|
|
164
181
|
export interface AcceptedAtRouteResult$instance extends ObjectResult$instance {
|
|
182
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
183
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
184
|
+
|
|
165
185
|
get RouteName(): string | undefined;
|
|
166
186
|
set RouteName(value: string | undefined);
|
|
167
187
|
get RouteValues(): RouteValueDictionary | undefined;
|
|
@@ -188,6 +208,9 @@ export type AcceptedAtRouteResult = AcceptedAtRouteResult$instance & __AcceptedA
|
|
|
188
208
|
|
|
189
209
|
|
|
190
210
|
export interface AcceptedResult$instance extends ObjectResult$instance {
|
|
211
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
212
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
213
|
+
|
|
191
214
|
get Location(): string | undefined;
|
|
192
215
|
set Location(value: string | undefined);
|
|
193
216
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
@@ -211,6 +234,9 @@ export type AcceptedResult = AcceptedResult$instance & __AcceptedResult$views;
|
|
|
211
234
|
|
|
212
235
|
|
|
213
236
|
export interface AcceptVerbsAttribute$instance extends Attribute {
|
|
237
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IActionHttpMethodProvider: never;
|
|
238
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IRouteTemplateProvider: never;
|
|
239
|
+
|
|
214
240
|
readonly HttpMethods: IEnumerable__System_Collections_Generic<System_Internal.String>;
|
|
215
241
|
get Name(): string | undefined;
|
|
216
242
|
set Name(value: string | undefined);
|
|
@@ -278,6 +304,8 @@ export const ActionNameAttribute: {
|
|
|
278
304
|
export type ActionNameAttribute = ActionNameAttribute$instance;
|
|
279
305
|
|
|
280
306
|
export interface ActionResult$instance {
|
|
307
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
308
|
+
|
|
281
309
|
ExecuteResult(context: ActionContext): void;
|
|
282
310
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
283
311
|
}
|
|
@@ -297,6 +325,8 @@ export type ActionResult = ActionResult$instance & __ActionResult$views;
|
|
|
297
325
|
|
|
298
326
|
|
|
299
327
|
export interface ActionResult_1$instance<TValue> {
|
|
328
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IConvertToActionResult: never;
|
|
329
|
+
|
|
300
330
|
readonly Result: ActionResult | undefined;
|
|
301
331
|
readonly Value: TValue | undefined;
|
|
302
332
|
}
|
|
@@ -318,6 +348,11 @@ export type ActionResult_1<TValue> = ActionResult_1$instance<TValue> & __ActionR
|
|
|
318
348
|
|
|
319
349
|
|
|
320
350
|
export interface AntiforgeryValidationFailedResult$instance extends BadRequestResult$instance, IAntiforgeryValidationFailedResult {
|
|
351
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Core_Infrastructure_IAntiforgeryValidationFailedResult: never;
|
|
352
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
353
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IClientErrorActionResult: never;
|
|
354
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
355
|
+
|
|
321
356
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
322
357
|
}
|
|
323
358
|
|
|
@@ -336,6 +371,9 @@ export type AntiforgeryValidationFailedResult = AntiforgeryValidationFailedResul
|
|
|
336
371
|
|
|
337
372
|
|
|
338
373
|
export interface ApiBehaviorOptions$instance {
|
|
374
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
375
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
376
|
+
|
|
339
377
|
readonly ClientErrorMapping: IDictionary__System_Collections_Generic<System_Internal.Int32, ClientErrorData>;
|
|
340
378
|
DisableImplicitFromServicesParameters: boolean;
|
|
341
379
|
InvalidModelStateResponseFactory: Func<ActionContext, IActionResult>;
|
|
@@ -354,6 +392,10 @@ export const ApiBehaviorOptions: {
|
|
|
354
392
|
export type ApiBehaviorOptions = ApiBehaviorOptions$instance;
|
|
355
393
|
|
|
356
394
|
export interface ApiControllerAttribute$instance extends ControllerAttribute, IApiBehaviorMetadata, IFilterMetadata, IDisableCookieRedirectMetadata {
|
|
395
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IDisableCookieRedirectMetadata: never;
|
|
396
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
397
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IApiBehaviorMetadata: never;
|
|
398
|
+
|
|
357
399
|
}
|
|
358
400
|
|
|
359
401
|
|
|
@@ -402,6 +444,9 @@ export const ApiDescriptionActionData: {
|
|
|
402
444
|
export type ApiDescriptionActionData = ApiDescriptionActionData$instance;
|
|
403
445
|
|
|
404
446
|
export interface ApiExplorerSettingsAttribute$instance extends Attribute {
|
|
447
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiDescriptionGroupNameProvider: never;
|
|
448
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiDescriptionVisibilityProvider: never;
|
|
449
|
+
|
|
405
450
|
get GroupName(): string | undefined;
|
|
406
451
|
set GroupName(value: string | undefined);
|
|
407
452
|
IgnoreApi: boolean;
|
|
@@ -422,6 +467,8 @@ export type ApiExplorerSettingsAttribute = ApiExplorerSettingsAttribute$instance
|
|
|
422
467
|
|
|
423
468
|
|
|
424
469
|
export interface AreaAttribute$instance extends RouteValueAttribute {
|
|
470
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IRouteValueProvider: never;
|
|
471
|
+
|
|
425
472
|
}
|
|
426
473
|
|
|
427
474
|
|
|
@@ -440,6 +487,10 @@ export type AreaAttribute = AreaAttribute$instance & __AreaAttribute$views;
|
|
|
440
487
|
|
|
441
488
|
|
|
442
489
|
export interface AutoValidateAntiforgeryTokenAttribute$instance extends Attribute, IFilterMetadata {
|
|
490
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
491
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
492
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
493
|
+
|
|
443
494
|
readonly IsReusable: boolean;
|
|
444
495
|
Order: int;
|
|
445
496
|
CreateInstance(serviceProvider: IServiceProvider): IFilterMetadata;
|
|
@@ -462,6 +513,9 @@ export type AutoValidateAntiforgeryTokenAttribute = AutoValidateAntiforgeryToken
|
|
|
462
513
|
|
|
463
514
|
|
|
464
515
|
export interface BadRequestObjectResult$instance extends ObjectResult$instance {
|
|
516
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
517
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
518
|
+
|
|
465
519
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
466
520
|
}
|
|
467
521
|
|
|
@@ -481,6 +535,10 @@ export type BadRequestObjectResult = BadRequestObjectResult$instance & __BadRequ
|
|
|
481
535
|
|
|
482
536
|
|
|
483
537
|
export interface BadRequestResult$instance extends StatusCodeResult$instance {
|
|
538
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
539
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IClientErrorActionResult: never;
|
|
540
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
541
|
+
|
|
484
542
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
485
543
|
}
|
|
486
544
|
|
|
@@ -499,6 +557,9 @@ export type BadRequestResult = BadRequestResult$instance & __BadRequestResult$vi
|
|
|
499
557
|
|
|
500
558
|
|
|
501
559
|
export interface BindAttribute$instance extends Attribute {
|
|
560
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IModelNameProvider: never;
|
|
561
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IPropertyFilterProvider: never;
|
|
562
|
+
|
|
502
563
|
readonly Include: string[];
|
|
503
564
|
get Prefix(): string | undefined;
|
|
504
565
|
set Prefix(value: string | undefined);
|
|
@@ -534,6 +595,11 @@ export const BindPropertiesAttribute: {
|
|
|
534
595
|
export type BindPropertiesAttribute = BindPropertiesAttribute$instance;
|
|
535
596
|
|
|
536
597
|
export interface BindPropertyAttribute$instance extends Attribute {
|
|
598
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBinderTypeProviderMetadata: never;
|
|
599
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBindingSourceMetadata: never;
|
|
600
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IModelNameProvider: never;
|
|
601
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IRequestPredicateProvider: never;
|
|
602
|
+
|
|
537
603
|
get BinderType(): Type | undefined;
|
|
538
604
|
set BinderType(value: Type | undefined);
|
|
539
605
|
BindingSource: BindingSource;
|
|
@@ -579,6 +645,8 @@ export const CacheProfile: {
|
|
|
579
645
|
export type CacheProfile = CacheProfile$instance;
|
|
580
646
|
|
|
581
647
|
export interface ChallengeResult$instance extends ActionResult$instance {
|
|
648
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
649
|
+
|
|
582
650
|
AuthenticationSchemes: IList<System_Internal.String>;
|
|
583
651
|
get Properties(): AuthenticationProperties | undefined;
|
|
584
652
|
set Properties(value: AuthenticationProperties | undefined);
|
|
@@ -619,6 +687,9 @@ export const ClientErrorData: {
|
|
|
619
687
|
export type ClientErrorData = ClientErrorData$instance;
|
|
620
688
|
|
|
621
689
|
export interface ConflictObjectResult$instance extends ObjectResult$instance {
|
|
690
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
691
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
692
|
+
|
|
622
693
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
623
694
|
}
|
|
624
695
|
|
|
@@ -638,6 +709,10 @@ export type ConflictObjectResult = ConflictObjectResult$instance & __ConflictObj
|
|
|
638
709
|
|
|
639
710
|
|
|
640
711
|
export interface ConflictResult$instance extends StatusCodeResult$instance {
|
|
712
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
713
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IClientErrorActionResult: never;
|
|
714
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
715
|
+
|
|
641
716
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
642
717
|
}
|
|
643
718
|
|
|
@@ -656,6 +731,14 @@ export type ConflictResult = ConflictResult$instance & __ConflictResult$views;
|
|
|
656
731
|
|
|
657
732
|
|
|
658
733
|
export interface ConsumesAttribute$instance extends Attribute, IFilterMetadata, IActionConstraintMetadata {
|
|
734
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IAcceptsMetadata: never;
|
|
735
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ActionConstraints_IActionConstraint: never;
|
|
736
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ActionConstraints_IActionConstraintMetadata: never;
|
|
737
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ActionConstraints_IConsumesActionConstraint: never;
|
|
738
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiRequestMetadataProvider: never;
|
|
739
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
740
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IResourceFilter: never;
|
|
741
|
+
|
|
659
742
|
ContentTypes: MediaTypeCollection;
|
|
660
743
|
IsOptional: boolean;
|
|
661
744
|
Accept(context: ActionConstraintContext): boolean;
|
|
@@ -685,6 +768,9 @@ export type ConsumesAttribute = ConsumesAttribute$instance & __ConsumesAttribute
|
|
|
685
768
|
|
|
686
769
|
|
|
687
770
|
export interface ContentResult$instance extends ActionResult$instance {
|
|
771
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
772
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
773
|
+
|
|
688
774
|
get Content(): string | undefined;
|
|
689
775
|
set Content(value: string | undefined);
|
|
690
776
|
get ContentType(): string | undefined;
|
|
@@ -708,6 +794,11 @@ export type ContentResult = ContentResult$instance & __ContentResult$views;
|
|
|
708
794
|
|
|
709
795
|
|
|
710
796
|
export interface Controller$instance extends ControllerBase, IFilterMetadata {
|
|
797
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IActionFilter: never;
|
|
798
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IAsyncActionFilter: never;
|
|
799
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
800
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
801
|
+
|
|
711
802
|
TempData: ITempDataDictionary;
|
|
712
803
|
readonly ViewBag: unknown;
|
|
713
804
|
ViewData: ViewDataDictionary;
|
|
@@ -742,7 +833,7 @@ export interface __Controller$views {
|
|
|
742
833
|
As_IAsyncActionFilter(): Microsoft_AspNetCore_Mvc_Filters_Internal.IAsyncActionFilter$instance;
|
|
743
834
|
}
|
|
744
835
|
|
|
745
|
-
export interface Controller$instance extends Microsoft_AspNetCore_Mvc_Filters_Internal.IActionFilter$instance, Microsoft_AspNetCore_Mvc_Filters_Internal.IAsyncActionFilter$instance {}
|
|
836
|
+
export interface Controller$instance extends Microsoft_AspNetCore_Mvc_Filters_Internal.IActionFilter$instance, Microsoft_AspNetCore_Mvc_Filters_Internal.IAsyncActionFilter$instance, System_Internal.IDisposable {}
|
|
746
837
|
|
|
747
838
|
export type Controller = Controller$instance & __Controller$views;
|
|
748
839
|
|
|
@@ -981,6 +1072,9 @@ export const CookieTempDataProviderOptions: {
|
|
|
981
1072
|
export type CookieTempDataProviderOptions = CookieTempDataProviderOptions$instance;
|
|
982
1073
|
|
|
983
1074
|
export interface CreatedAtActionResult$instance extends ObjectResult$instance {
|
|
1075
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1076
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
1077
|
+
|
|
984
1078
|
get ActionName(): string | undefined;
|
|
985
1079
|
set ActionName(value: string | undefined);
|
|
986
1080
|
get ControllerName(): string | undefined;
|
|
@@ -1008,6 +1102,9 @@ export type CreatedAtActionResult = CreatedAtActionResult$instance & __CreatedAt
|
|
|
1008
1102
|
|
|
1009
1103
|
|
|
1010
1104
|
export interface CreatedAtRouteResult$instance extends ObjectResult$instance {
|
|
1105
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1106
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
1107
|
+
|
|
1011
1108
|
get RouteName(): string | undefined;
|
|
1012
1109
|
set RouteName(value: string | undefined);
|
|
1013
1110
|
get RouteValues(): RouteValueDictionary | undefined;
|
|
@@ -1034,6 +1131,9 @@ export type CreatedAtRouteResult = CreatedAtRouteResult$instance & __CreatedAtRo
|
|
|
1034
1131
|
|
|
1035
1132
|
|
|
1036
1133
|
export interface CreatedResult$instance extends ObjectResult$instance {
|
|
1134
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1135
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
1136
|
+
|
|
1037
1137
|
get Location(): string | undefined;
|
|
1038
1138
|
set Location(value: string | undefined);
|
|
1039
1139
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
@@ -1057,6 +1157,11 @@ export type CreatedResult = CreatedResult$instance & __CreatedResult$views;
|
|
|
1057
1157
|
|
|
1058
1158
|
|
|
1059
1159
|
export interface DisableRequestSizeLimitAttribute$instance extends Attribute, IFilterMetadata {
|
|
1160
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IRequestSizeLimitMetadata: never;
|
|
1161
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
1162
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
1163
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
1164
|
+
|
|
1060
1165
|
readonly IsReusable: boolean;
|
|
1061
1166
|
Order: int;
|
|
1062
1167
|
CreateInstance(serviceProvider: IServiceProvider): IFilterMetadata;
|
|
@@ -1080,6 +1185,8 @@ export type DisableRequestSizeLimitAttribute = DisableRequestSizeLimitAttribute$
|
|
|
1080
1185
|
|
|
1081
1186
|
|
|
1082
1187
|
export interface EmptyResult$instance extends ActionResult$instance {
|
|
1188
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1189
|
+
|
|
1083
1190
|
ExecuteResult(context: ActionContext): void;
|
|
1084
1191
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
1085
1192
|
}
|
|
@@ -1098,6 +1205,8 @@ export type EmptyResult = EmptyResult$instance & __EmptyResult$views;
|
|
|
1098
1205
|
|
|
1099
1206
|
|
|
1100
1207
|
export interface FileContentResult$instance extends FileResult$instance {
|
|
1208
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1209
|
+
|
|
1101
1210
|
FileContents: byte[];
|
|
1102
1211
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
1103
1212
|
}
|
|
@@ -1117,6 +1226,8 @@ export type FileContentResult = FileContentResult$instance & __FileContentResult
|
|
|
1117
1226
|
|
|
1118
1227
|
|
|
1119
1228
|
export interface FileResult$instance extends ActionResult$instance {
|
|
1229
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1230
|
+
|
|
1120
1231
|
readonly ContentType: string;
|
|
1121
1232
|
EnableRangeProcessing: boolean;
|
|
1122
1233
|
get EntityTag(): EntityTagHeaderValue | undefined;
|
|
@@ -1139,6 +1250,8 @@ export type FileResult = FileResult$instance & __FileResult$views;
|
|
|
1139
1250
|
|
|
1140
1251
|
|
|
1141
1252
|
export interface FileStreamResult$instance extends FileResult$instance {
|
|
1253
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1254
|
+
|
|
1142
1255
|
FileStream: Stream;
|
|
1143
1256
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
1144
1257
|
}
|
|
@@ -1158,6 +1271,8 @@ export type FileStreamResult = FileStreamResult$instance & __FileStreamResult$vi
|
|
|
1158
1271
|
|
|
1159
1272
|
|
|
1160
1273
|
export interface ForbidResult$instance extends ActionResult$instance {
|
|
1274
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1275
|
+
|
|
1161
1276
|
AuthenticationSchemes: IList<System_Internal.String>;
|
|
1162
1277
|
get Properties(): AuthenticationProperties | undefined;
|
|
1163
1278
|
set Properties(value: AuthenticationProperties | undefined);
|
|
@@ -1183,6 +1298,9 @@ export type ForbidResult = ForbidResult$instance & __ForbidResult$views;
|
|
|
1183
1298
|
|
|
1184
1299
|
|
|
1185
1300
|
export interface FormatFilterAttribute$instance extends Attribute, IFilterMetadata {
|
|
1301
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
1302
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
1303
|
+
|
|
1186
1304
|
readonly IsReusable: boolean;
|
|
1187
1305
|
CreateInstance(serviceProvider: IServiceProvider): IFilterMetadata;
|
|
1188
1306
|
}
|
|
@@ -1203,6 +1321,10 @@ export type FormatFilterAttribute = FormatFilterAttribute$instance & __FormatFil
|
|
|
1203
1321
|
|
|
1204
1322
|
|
|
1205
1323
|
export interface FromBodyAttribute$instance extends Attribute {
|
|
1324
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IFromBodyMetadata: never;
|
|
1325
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBindingSourceMetadata: never;
|
|
1326
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IConfigureEmptyBodyBehavior: never;
|
|
1327
|
+
|
|
1206
1328
|
readonly BindingSource: BindingSource;
|
|
1207
1329
|
EmptyBodyBehavior: EmptyBodyBehavior;
|
|
1208
1330
|
}
|
|
@@ -1224,6 +1346,10 @@ export type FromBodyAttribute = FromBodyAttribute$instance & __FromBodyAttribute
|
|
|
1224
1346
|
|
|
1225
1347
|
|
|
1226
1348
|
export interface FromFormAttribute$instance extends Attribute {
|
|
1349
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IFromFormMetadata: never;
|
|
1350
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBindingSourceMetadata: never;
|
|
1351
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IModelNameProvider: never;
|
|
1352
|
+
|
|
1227
1353
|
readonly BindingSource: BindingSource;
|
|
1228
1354
|
get Name(): string | undefined;
|
|
1229
1355
|
set Name(value: string | undefined);
|
|
@@ -1247,6 +1373,10 @@ export type FromFormAttribute = FromFormAttribute$instance & __FromFormAttribute
|
|
|
1247
1373
|
|
|
1248
1374
|
|
|
1249
1375
|
export interface FromHeaderAttribute$instance extends Attribute {
|
|
1376
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IFromHeaderMetadata: never;
|
|
1377
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBindingSourceMetadata: never;
|
|
1378
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IModelNameProvider: never;
|
|
1379
|
+
|
|
1250
1380
|
readonly BindingSource: BindingSource;
|
|
1251
1381
|
get Name(): string | undefined;
|
|
1252
1382
|
set Name(value: string | undefined);
|
|
@@ -1270,6 +1400,10 @@ export type FromHeaderAttribute = FromHeaderAttribute$instance & __FromHeaderAtt
|
|
|
1270
1400
|
|
|
1271
1401
|
|
|
1272
1402
|
export interface FromQueryAttribute$instance extends Attribute {
|
|
1403
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IFromQueryMetadata: never;
|
|
1404
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBindingSourceMetadata: never;
|
|
1405
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IModelNameProvider: never;
|
|
1406
|
+
|
|
1273
1407
|
readonly BindingSource: BindingSource;
|
|
1274
1408
|
get Name(): string | undefined;
|
|
1275
1409
|
set Name(value: string | undefined);
|
|
@@ -1293,6 +1427,10 @@ export type FromQueryAttribute = FromQueryAttribute$instance & __FromQueryAttrib
|
|
|
1293
1427
|
|
|
1294
1428
|
|
|
1295
1429
|
export interface FromRouteAttribute$instance extends Attribute {
|
|
1430
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IFromRouteMetadata: never;
|
|
1431
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBindingSourceMetadata: never;
|
|
1432
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IModelNameProvider: never;
|
|
1433
|
+
|
|
1296
1434
|
readonly BindingSource: BindingSource;
|
|
1297
1435
|
get Name(): string | undefined;
|
|
1298
1436
|
set Name(value: string | undefined);
|
|
@@ -1316,6 +1454,9 @@ export type FromRouteAttribute = FromRouteAttribute$instance & __FromRouteAttrib
|
|
|
1316
1454
|
|
|
1317
1455
|
|
|
1318
1456
|
export interface FromServicesAttribute$instance extends Attribute, IFromServiceMetadata {
|
|
1457
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IFromServiceMetadata: never;
|
|
1458
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBindingSourceMetadata: never;
|
|
1459
|
+
|
|
1319
1460
|
readonly BindingSource: BindingSource;
|
|
1320
1461
|
}
|
|
1321
1462
|
|
|
@@ -1347,6 +1488,9 @@ export const HiddenInputAttribute: {
|
|
|
1347
1488
|
export type HiddenInputAttribute = HiddenInputAttribute$instance;
|
|
1348
1489
|
|
|
1349
1490
|
export interface HttpDeleteAttribute$instance extends HttpMethodAttribute {
|
|
1491
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IActionHttpMethodProvider: never;
|
|
1492
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IRouteTemplateProvider: never;
|
|
1493
|
+
|
|
1350
1494
|
}
|
|
1351
1495
|
|
|
1352
1496
|
|
|
@@ -1367,6 +1511,9 @@ export type HttpDeleteAttribute = HttpDeleteAttribute$instance & __HttpDeleteAtt
|
|
|
1367
1511
|
|
|
1368
1512
|
|
|
1369
1513
|
export interface HttpGetAttribute$instance extends HttpMethodAttribute {
|
|
1514
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IActionHttpMethodProvider: never;
|
|
1515
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IRouteTemplateProvider: never;
|
|
1516
|
+
|
|
1370
1517
|
}
|
|
1371
1518
|
|
|
1372
1519
|
|
|
@@ -1387,6 +1534,9 @@ export type HttpGetAttribute = HttpGetAttribute$instance & __HttpGetAttribute$vi
|
|
|
1387
1534
|
|
|
1388
1535
|
|
|
1389
1536
|
export interface HttpHeadAttribute$instance extends HttpMethodAttribute {
|
|
1537
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IActionHttpMethodProvider: never;
|
|
1538
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IRouteTemplateProvider: never;
|
|
1539
|
+
|
|
1390
1540
|
}
|
|
1391
1541
|
|
|
1392
1542
|
|
|
@@ -1407,6 +1557,9 @@ export type HttpHeadAttribute = HttpHeadAttribute$instance & __HttpHeadAttribute
|
|
|
1407
1557
|
|
|
1408
1558
|
|
|
1409
1559
|
export interface HttpOptionsAttribute$instance extends HttpMethodAttribute {
|
|
1560
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IActionHttpMethodProvider: never;
|
|
1561
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IRouteTemplateProvider: never;
|
|
1562
|
+
|
|
1410
1563
|
}
|
|
1411
1564
|
|
|
1412
1565
|
|
|
@@ -1427,6 +1580,9 @@ export type HttpOptionsAttribute = HttpOptionsAttribute$instance & __HttpOptions
|
|
|
1427
1580
|
|
|
1428
1581
|
|
|
1429
1582
|
export interface HttpPatchAttribute$instance extends HttpMethodAttribute {
|
|
1583
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IActionHttpMethodProvider: never;
|
|
1584
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IRouteTemplateProvider: never;
|
|
1585
|
+
|
|
1430
1586
|
}
|
|
1431
1587
|
|
|
1432
1588
|
|
|
@@ -1447,6 +1603,9 @@ export type HttpPatchAttribute = HttpPatchAttribute$instance & __HttpPatchAttrib
|
|
|
1447
1603
|
|
|
1448
1604
|
|
|
1449
1605
|
export interface HttpPostAttribute$instance extends HttpMethodAttribute {
|
|
1606
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IActionHttpMethodProvider: never;
|
|
1607
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IRouteTemplateProvider: never;
|
|
1608
|
+
|
|
1450
1609
|
}
|
|
1451
1610
|
|
|
1452
1611
|
|
|
@@ -1467,6 +1626,9 @@ export type HttpPostAttribute = HttpPostAttribute$instance & __HttpPostAttribute
|
|
|
1467
1626
|
|
|
1468
1627
|
|
|
1469
1628
|
export interface HttpPutAttribute$instance extends HttpMethodAttribute {
|
|
1629
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IActionHttpMethodProvider: never;
|
|
1630
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IRouteTemplateProvider: never;
|
|
1631
|
+
|
|
1470
1632
|
}
|
|
1471
1633
|
|
|
1472
1634
|
|
|
@@ -1487,6 +1649,10 @@ export type HttpPutAttribute = HttpPutAttribute$instance & __HttpPutAttribute$vi
|
|
|
1487
1649
|
|
|
1488
1650
|
|
|
1489
1651
|
export interface IgnoreAntiforgeryTokenAttribute$instance extends Attribute, IAntiforgeryPolicy, IFilterMetadata {
|
|
1652
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
1653
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
1654
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ViewFeatures_IAntiforgeryPolicy: never;
|
|
1655
|
+
|
|
1490
1656
|
Order: int;
|
|
1491
1657
|
}
|
|
1492
1658
|
|
|
@@ -1519,6 +1685,9 @@ export const JsonOptions: {
|
|
|
1519
1685
|
export type JsonOptions = JsonOptions$instance;
|
|
1520
1686
|
|
|
1521
1687
|
export interface JsonResult$instance extends ActionResult$instance {
|
|
1688
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1689
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
1690
|
+
|
|
1522
1691
|
get ContentType(): string | undefined;
|
|
1523
1692
|
set ContentType(value: string | undefined);
|
|
1524
1693
|
get SerializerSettings(): unknown | undefined;
|
|
@@ -1545,6 +1714,8 @@ export type JsonResult = JsonResult$instance & __JsonResult$views;
|
|
|
1545
1714
|
|
|
1546
1715
|
|
|
1547
1716
|
export interface LocalRedirectResult$instance extends ActionResult$instance {
|
|
1717
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1718
|
+
|
|
1548
1719
|
Permanent: boolean;
|
|
1549
1720
|
PreserveMethod: boolean;
|
|
1550
1721
|
Url: string;
|
|
@@ -1569,6 +1740,10 @@ export type LocalRedirectResult = LocalRedirectResult$instance & __LocalRedirect
|
|
|
1569
1740
|
|
|
1570
1741
|
|
|
1571
1742
|
export interface MiddlewareFilterAttribute$instance extends Attribute, IFilterMetadata {
|
|
1743
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
1744
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
1745
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
1746
|
+
|
|
1572
1747
|
readonly ConfigurationType: Type;
|
|
1573
1748
|
readonly IsReusable: boolean;
|
|
1574
1749
|
Order: int;
|
|
@@ -1592,6 +1767,10 @@ export type MiddlewareFilterAttribute = MiddlewareFilterAttribute$instance & __M
|
|
|
1592
1767
|
|
|
1593
1768
|
|
|
1594
1769
|
export interface MiddlewareFilterAttribute_1$instance<T> extends MiddlewareFilterAttribute$instance, IFilterMetadata {
|
|
1770
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
1771
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
1772
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
1773
|
+
|
|
1595
1774
|
CreateInstance(serviceProvider: IServiceProvider): IFilterMetadata;
|
|
1596
1775
|
}
|
|
1597
1776
|
|
|
@@ -1610,6 +1789,10 @@ export type MiddlewareFilterAttribute_1<T> = MiddlewareFilterAttribute_1$instanc
|
|
|
1610
1789
|
|
|
1611
1790
|
|
|
1612
1791
|
export interface ModelBinderAttribute$instance extends Attribute {
|
|
1792
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBinderTypeProviderMetadata: never;
|
|
1793
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBindingSourceMetadata: never;
|
|
1794
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IModelNameProvider: never;
|
|
1795
|
+
|
|
1613
1796
|
get BinderType(): Type | undefined;
|
|
1614
1797
|
set BinderType(value: Type | undefined);
|
|
1615
1798
|
BindingSource: BindingSource;
|
|
@@ -1634,6 +1817,10 @@ export type ModelBinderAttribute = ModelBinderAttribute$instance & __ModelBinder
|
|
|
1634
1817
|
|
|
1635
1818
|
|
|
1636
1819
|
export interface ModelBinderAttribute_1$instance<TBinder extends IModelBinder> extends ModelBinderAttribute$instance {
|
|
1820
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBinderTypeProviderMetadata: never;
|
|
1821
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IBindingSourceMetadata: never;
|
|
1822
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_IModelNameProvider: never;
|
|
1823
|
+
|
|
1637
1824
|
}
|
|
1638
1825
|
|
|
1639
1826
|
|
|
@@ -1675,6 +1862,9 @@ export const ModelMetadataTypeAttribute_1: {
|
|
|
1675
1862
|
export type ModelMetadataTypeAttribute_1<T> = ModelMetadataTypeAttribute_1$instance<T>;
|
|
1676
1863
|
|
|
1677
1864
|
export interface MvcOptions$instance {
|
|
1865
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1866
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1867
|
+
|
|
1678
1868
|
AllowEmptyInputInBodyModelBinding: boolean;
|
|
1679
1869
|
readonly CacheProfiles: IDictionary__System_Collections_Generic<System_Internal.String, CacheProfile>;
|
|
1680
1870
|
readonly Conventions: IList<IApplicationModelConvention>;
|
|
@@ -1714,6 +1904,9 @@ export const MvcOptions: {
|
|
|
1714
1904
|
export type MvcOptions = MvcOptions$instance;
|
|
1715
1905
|
|
|
1716
1906
|
export interface MvcViewOptions$instance {
|
|
1907
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1908
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1909
|
+
|
|
1717
1910
|
readonly ClientModelValidatorProviders: IList<IClientModelValidatorProvider>;
|
|
1718
1911
|
HtmlHelperOptions: HtmlHelperOptions;
|
|
1719
1912
|
readonly ViewEngines: IList<IViewEngine>;
|
|
@@ -1728,6 +1921,10 @@ export const MvcViewOptions: {
|
|
|
1728
1921
|
export type MvcViewOptions = MvcViewOptions$instance;
|
|
1729
1922
|
|
|
1730
1923
|
export interface NoContentResult$instance extends StatusCodeResult$instance {
|
|
1924
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1925
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IClientErrorActionResult: never;
|
|
1926
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
1927
|
+
|
|
1731
1928
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
1732
1929
|
}
|
|
1733
1930
|
|
|
@@ -1779,6 +1976,9 @@ export const NonViewComponentAttribute: {
|
|
|
1779
1976
|
export type NonViewComponentAttribute = NonViewComponentAttribute$instance;
|
|
1780
1977
|
|
|
1781
1978
|
export interface NotFoundObjectResult$instance extends ObjectResult$instance {
|
|
1979
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
1980
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
1981
|
+
|
|
1782
1982
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
1783
1983
|
}
|
|
1784
1984
|
|
|
@@ -1797,6 +1997,10 @@ export type NotFoundObjectResult = NotFoundObjectResult$instance & __NotFoundObj
|
|
|
1797
1997
|
|
|
1798
1998
|
|
|
1799
1999
|
export interface NotFoundResult$instance extends StatusCodeResult$instance {
|
|
2000
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2001
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IClientErrorActionResult: never;
|
|
2002
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
2003
|
+
|
|
1800
2004
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
1801
2005
|
}
|
|
1802
2006
|
|
|
@@ -1815,6 +2019,9 @@ export type NotFoundResult = NotFoundResult$instance & __NotFoundResult$views;
|
|
|
1815
2019
|
|
|
1816
2020
|
|
|
1817
2021
|
export interface ObjectResult$instance extends ActionResult$instance {
|
|
2022
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2023
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
2024
|
+
|
|
1818
2025
|
ContentTypes: MediaTypeCollection;
|
|
1819
2026
|
get DeclaredType(): Type | undefined;
|
|
1820
2027
|
set DeclaredType(value: Type | undefined);
|
|
@@ -1841,6 +2048,9 @@ export type ObjectResult = ObjectResult$instance & __ObjectResult$views;
|
|
|
1841
2048
|
|
|
1842
2049
|
|
|
1843
2050
|
export interface OkObjectResult$instance extends ObjectResult$instance {
|
|
2051
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2052
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
2053
|
+
|
|
1844
2054
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
1845
2055
|
}
|
|
1846
2056
|
|
|
@@ -1859,6 +2069,10 @@ export type OkObjectResult = OkObjectResult$instance & __OkObjectResult$views;
|
|
|
1859
2069
|
|
|
1860
2070
|
|
|
1861
2071
|
export interface OkResult$instance extends StatusCodeResult$instance {
|
|
2072
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2073
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IClientErrorActionResult: never;
|
|
2074
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
2075
|
+
|
|
1862
2076
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
1863
2077
|
}
|
|
1864
2078
|
|
|
@@ -1877,6 +2091,8 @@ export type OkResult = OkResult$instance & __OkResult$views;
|
|
|
1877
2091
|
|
|
1878
2092
|
|
|
1879
2093
|
export interface PageRemoteAttribute$instance extends RemoteAttributeBase$instance {
|
|
2094
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_Validation_IClientModelValidator: never;
|
|
2095
|
+
|
|
1880
2096
|
get PageHandler(): string | undefined;
|
|
1881
2097
|
set PageHandler(value: string | undefined);
|
|
1882
2098
|
get PageName(): string | undefined;
|
|
@@ -1899,6 +2115,9 @@ export type PageRemoteAttribute = PageRemoteAttribute$instance & __PageRemoteAtt
|
|
|
1899
2115
|
|
|
1900
2116
|
|
|
1901
2117
|
export interface PartialViewResult$instance extends ActionResult$instance {
|
|
2118
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2119
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
2120
|
+
|
|
1902
2121
|
get ContentType(): string | undefined;
|
|
1903
2122
|
set ContentType(value: string | undefined);
|
|
1904
2123
|
readonly Model: unknown | undefined;
|
|
@@ -1927,6 +2146,8 @@ export type PartialViewResult = PartialViewResult$instance & __PartialViewResult
|
|
|
1927
2146
|
|
|
1928
2147
|
|
|
1929
2148
|
export interface PhysicalFileResult$instance extends FileResult$instance {
|
|
2149
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2150
|
+
|
|
1930
2151
|
FileName: string;
|
|
1931
2152
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
1932
2153
|
}
|
|
@@ -1967,6 +2188,11 @@ export const ProblemDetails: {
|
|
|
1967
2188
|
export type ProblemDetails = ProblemDetails$instance;
|
|
1968
2189
|
|
|
1969
2190
|
export interface ProducesAttribute$instance extends Attribute, IFilterMetadata {
|
|
2191
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiResponseMetadataProvider: never;
|
|
2192
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2193
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
2194
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IResultFilter: never;
|
|
2195
|
+
|
|
1970
2196
|
ContentTypes: MediaTypeCollection;
|
|
1971
2197
|
get Description(): string | undefined;
|
|
1972
2198
|
set Description(value: string | undefined);
|
|
@@ -1997,6 +2223,11 @@ export type ProducesAttribute = ProducesAttribute$instance & __ProducesAttribute
|
|
|
1997
2223
|
|
|
1998
2224
|
|
|
1999
2225
|
export interface ProducesAttribute_1$instance<T> extends ProducesAttribute$instance, IFilterMetadata {
|
|
2226
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiResponseMetadataProvider: never;
|
|
2227
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2228
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
2229
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IResultFilter: never;
|
|
2230
|
+
|
|
2000
2231
|
OnResultExecuted(context: ResultExecutedContext): void;
|
|
2001
2232
|
OnResultExecuting(context: ResultExecutingContext): void;
|
|
2002
2233
|
SetContentTypes(contentTypes: MediaTypeCollection): void;
|
|
@@ -2018,6 +2249,10 @@ export type ProducesAttribute_1<T> = ProducesAttribute_1$instance<T> & __Produce
|
|
|
2018
2249
|
|
|
2019
2250
|
|
|
2020
2251
|
export interface ProducesDefaultResponseTypeAttribute$instance extends Attribute, IFilterMetadata {
|
|
2252
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiDefaultResponseMetadataProvider: never;
|
|
2253
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiResponseMetadataProvider: never;
|
|
2254
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2255
|
+
|
|
2021
2256
|
get Description(): string | undefined;
|
|
2022
2257
|
set Description(value: string | undefined);
|
|
2023
2258
|
readonly StatusCode: int;
|
|
@@ -2051,6 +2286,9 @@ export const ProducesErrorResponseTypeAttribute: {
|
|
|
2051
2286
|
export type ProducesErrorResponseTypeAttribute = ProducesErrorResponseTypeAttribute$instance;
|
|
2052
2287
|
|
|
2053
2288
|
export interface ProducesResponseTypeAttribute$instance extends Attribute, IFilterMetadata {
|
|
2289
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiResponseMetadataProvider: never;
|
|
2290
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2291
|
+
|
|
2054
2292
|
get Description(): string | undefined;
|
|
2055
2293
|
set Description(value: string | undefined);
|
|
2056
2294
|
StatusCode: int;
|
|
@@ -2073,6 +2311,9 @@ export type ProducesResponseTypeAttribute = ProducesResponseTypeAttribute$instan
|
|
|
2073
2311
|
|
|
2074
2312
|
|
|
2075
2313
|
export interface ProducesResponseTypeAttribute_1$instance<T> extends ProducesResponseTypeAttribute$instance, IFilterMetadata {
|
|
2314
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiResponseMetadataProvider: never;
|
|
2315
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2316
|
+
|
|
2076
2317
|
SetContentTypes(contentTypes: MediaTypeCollection): void;
|
|
2077
2318
|
}
|
|
2078
2319
|
|
|
@@ -2091,6 +2332,9 @@ export type ProducesResponseTypeAttribute_1<T> = ProducesResponseTypeAttribute_1
|
|
|
2091
2332
|
|
|
2092
2333
|
|
|
2093
2334
|
export interface RedirectResult$instance extends ActionResult$instance, IKeepTempDataResult {
|
|
2335
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2336
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ViewFeatures_IKeepTempDataResult: never;
|
|
2337
|
+
|
|
2094
2338
|
Permanent: boolean;
|
|
2095
2339
|
PreserveMethod: boolean;
|
|
2096
2340
|
Url: string;
|
|
@@ -2117,6 +2361,9 @@ export type RedirectResult = RedirectResult$instance & __RedirectResult$views;
|
|
|
2117
2361
|
|
|
2118
2362
|
|
|
2119
2363
|
export interface RedirectToActionResult$instance extends ActionResult$instance, IKeepTempDataResult {
|
|
2364
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2365
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ViewFeatures_IKeepTempDataResult: never;
|
|
2366
|
+
|
|
2120
2367
|
get ActionName(): string | undefined;
|
|
2121
2368
|
set ActionName(value: string | undefined);
|
|
2122
2369
|
get ControllerName(): string | undefined;
|
|
@@ -2153,6 +2400,9 @@ export type RedirectToActionResult = RedirectToActionResult$instance & __Redirec
|
|
|
2153
2400
|
|
|
2154
2401
|
|
|
2155
2402
|
export interface RedirectToPageResult$instance extends ActionResult$instance, IKeepTempDataResult {
|
|
2403
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2404
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ViewFeatures_IKeepTempDataResult: never;
|
|
2405
|
+
|
|
2156
2406
|
get Fragment(): string | undefined;
|
|
2157
2407
|
set Fragment(value: string | undefined);
|
|
2158
2408
|
get Host(): string | undefined;
|
|
@@ -2196,6 +2446,9 @@ export type RedirectToPageResult = RedirectToPageResult$instance & __RedirectToP
|
|
|
2196
2446
|
|
|
2197
2447
|
|
|
2198
2448
|
export interface RedirectToRouteResult$instance extends ActionResult$instance, IKeepTempDataResult {
|
|
2449
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2450
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ViewFeatures_IKeepTempDataResult: never;
|
|
2451
|
+
|
|
2199
2452
|
get Fragment(): string | undefined;
|
|
2200
2453
|
set Fragment(value: string | undefined);
|
|
2201
2454
|
Permanent: boolean;
|
|
@@ -2231,6 +2484,8 @@ export type RedirectToRouteResult = RedirectToRouteResult$instance & __RedirectT
|
|
|
2231
2484
|
|
|
2232
2485
|
|
|
2233
2486
|
export interface RemoteAttribute$instance extends RemoteAttributeBase$instance {
|
|
2487
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_Validation_IClientModelValidator: never;
|
|
2488
|
+
|
|
2234
2489
|
AddValidation(context: ClientModelValidationContext): void;
|
|
2235
2490
|
GetUrl(context: ClientModelValidationContext): string;
|
|
2236
2491
|
}
|
|
@@ -2251,6 +2506,8 @@ export type RemoteAttribute = RemoteAttribute$instance & __RemoteAttribute$views
|
|
|
2251
2506
|
|
|
2252
2507
|
|
|
2253
2508
|
export interface RemoteAttributeBase$instance extends ValidationAttribute {
|
|
2509
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ModelBinding_Validation_IClientModelValidator: never;
|
|
2510
|
+
|
|
2254
2511
|
AdditionalFields: string;
|
|
2255
2512
|
get HttpMethod(): string | undefined;
|
|
2256
2513
|
set HttpMethod(value: string | undefined);
|
|
@@ -2277,6 +2534,11 @@ export type RemoteAttributeBase = RemoteAttributeBase$instance & __RemoteAttribu
|
|
|
2277
2534
|
|
|
2278
2535
|
|
|
2279
2536
|
export interface RequestFormLimitsAttribute$instance extends Attribute, IFilterMetadata {
|
|
2537
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IFormOptionsMetadata: never;
|
|
2538
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
2539
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2540
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
2541
|
+
|
|
2280
2542
|
BufferBody: boolean;
|
|
2281
2543
|
BufferBodyLengthLimit: long;
|
|
2282
2544
|
readonly IsReusable: boolean;
|
|
@@ -2310,6 +2572,11 @@ export type RequestFormLimitsAttribute = RequestFormLimitsAttribute$instance & _
|
|
|
2310
2572
|
|
|
2311
2573
|
|
|
2312
2574
|
export interface RequestSizeLimitAttribute$instance extends Attribute, IFilterMetadata {
|
|
2575
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IRequestSizeLimitMetadata: never;
|
|
2576
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
2577
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2578
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
2579
|
+
|
|
2313
2580
|
readonly IsReusable: boolean;
|
|
2314
2581
|
Order: int;
|
|
2315
2582
|
CreateInstance(serviceProvider: IServiceProvider): IFilterMetadata;
|
|
@@ -2333,6 +2600,10 @@ export type RequestSizeLimitAttribute = RequestSizeLimitAttribute$instance & __R
|
|
|
2333
2600
|
|
|
2334
2601
|
|
|
2335
2602
|
export interface RequireHttpsAttribute$instance extends Attribute, IFilterMetadata {
|
|
2603
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IAuthorizationFilter: never;
|
|
2604
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2605
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
2606
|
+
|
|
2336
2607
|
Order: int;
|
|
2337
2608
|
Permanent: boolean;
|
|
2338
2609
|
HandleNonHttpsRequest(filterContext: AuthorizationFilterContext): void;
|
|
@@ -2356,6 +2627,10 @@ export type RequireHttpsAttribute = RequireHttpsAttribute$instance & __RequireHt
|
|
|
2356
2627
|
|
|
2357
2628
|
|
|
2358
2629
|
export interface ResponseCacheAttribute$instance extends Attribute, IFilterMetadata {
|
|
2630
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
2631
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2632
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
2633
|
+
|
|
2359
2634
|
get CacheProfileName(): string | undefined;
|
|
2360
2635
|
set CacheProfileName(value: string | undefined);
|
|
2361
2636
|
Duration: int;
|
|
@@ -2388,6 +2663,8 @@ export type ResponseCacheAttribute = ResponseCacheAttribute$instance & __Respons
|
|
|
2388
2663
|
|
|
2389
2664
|
|
|
2390
2665
|
export interface RouteAttribute$instance extends Attribute {
|
|
2666
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Routing_IRouteTemplateProvider: never;
|
|
2667
|
+
|
|
2391
2668
|
get Name(): string | undefined;
|
|
2392
2669
|
set Name(value: string | undefined);
|
|
2393
2670
|
Order: int;
|
|
@@ -2408,6 +2685,17 @@ export type RouteAttribute = RouteAttribute$instance & __RouteAttribute$views;
|
|
|
2408
2685
|
|
|
2409
2686
|
|
|
2410
2687
|
export interface SerializableError$instance extends Dictionary<System_Internal.String, unknown> {
|
|
2688
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
2689
|
+
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
2690
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2691
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2692
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyDictionary_2: never;
|
|
2693
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
2694
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
2695
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2696
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
2697
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2698
|
+
|
|
2411
2699
|
}
|
|
2412
2700
|
|
|
2413
2701
|
|
|
@@ -2420,6 +2708,10 @@ export const SerializableError: {
|
|
|
2420
2708
|
export type SerializableError = SerializableError$instance;
|
|
2421
2709
|
|
|
2422
2710
|
export interface ServiceFilterAttribute$instance extends Attribute, IFilterMetadata {
|
|
2711
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
2712
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2713
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
2714
|
+
|
|
2423
2715
|
IsReusable: boolean;
|
|
2424
2716
|
Order: int;
|
|
2425
2717
|
readonly ServiceType: Type;
|
|
@@ -2441,6 +2733,10 @@ export type ServiceFilterAttribute = ServiceFilterAttribute$instance & __Service
|
|
|
2441
2733
|
|
|
2442
2734
|
|
|
2443
2735
|
export interface ServiceFilterAttribute_1$instance<TFilter extends IFilterMetadata> extends ServiceFilterAttribute$instance, IFilterMetadata {
|
|
2736
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
2737
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2738
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
2739
|
+
|
|
2444
2740
|
CreateInstance(serviceProvider: IServiceProvider): IFilterMetadata;
|
|
2445
2741
|
}
|
|
2446
2742
|
|
|
@@ -2459,6 +2755,8 @@ export type ServiceFilterAttribute_1<TFilter extends IFilterMetadata> = ServiceF
|
|
|
2459
2755
|
|
|
2460
2756
|
|
|
2461
2757
|
export interface SignInResult$instance extends ActionResult$instance {
|
|
2758
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2759
|
+
|
|
2462
2760
|
get AuthenticationScheme(): string | undefined;
|
|
2463
2761
|
set AuthenticationScheme(value: string | undefined);
|
|
2464
2762
|
Principal: ClaimsPrincipal;
|
|
@@ -2484,6 +2782,9 @@ export type SignInResult = SignInResult$instance & __SignInResult$views;
|
|
|
2484
2782
|
|
|
2485
2783
|
|
|
2486
2784
|
export interface SignOutResult$instance extends ActionResult$instance {
|
|
2785
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IResult: never;
|
|
2786
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2787
|
+
|
|
2487
2788
|
AuthenticationSchemes: IList<System_Internal.String>;
|
|
2488
2789
|
get Properties(): AuthenticationProperties | undefined;
|
|
2489
2790
|
set Properties(value: AuthenticationProperties | undefined);
|
|
@@ -2512,6 +2813,10 @@ export type SignOutResult = SignOutResult$instance & __SignOutResult$views;
|
|
|
2512
2813
|
|
|
2513
2814
|
|
|
2514
2815
|
export interface SkipStatusCodePagesAttribute$instance extends Attribute, IFilterMetadata, ISkipStatusCodePagesMetadata {
|
|
2816
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_ISkipStatusCodePagesMetadata: never;
|
|
2817
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2818
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IResourceFilter: never;
|
|
2819
|
+
|
|
2515
2820
|
OnResourceExecuted(context: ResourceExecutedContext): void;
|
|
2516
2821
|
OnResourceExecuting(context: ResourceExecutingContext): void;
|
|
2517
2822
|
}
|
|
@@ -2532,6 +2837,10 @@ export type SkipStatusCodePagesAttribute = SkipStatusCodePagesAttribute$instance
|
|
|
2532
2837
|
|
|
2533
2838
|
|
|
2534
2839
|
export interface StatusCodeResult$instance extends ActionResult$instance, IClientErrorActionResult {
|
|
2840
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2841
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IClientErrorActionResult: never;
|
|
2842
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
2843
|
+
|
|
2535
2844
|
readonly StatusCode: int;
|
|
2536
2845
|
ExecuteResult(context: ActionContext): void;
|
|
2537
2846
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
@@ -2565,6 +2874,10 @@ export const TempDataAttribute: {
|
|
|
2565
2874
|
export type TempDataAttribute = TempDataAttribute$instance;
|
|
2566
2875
|
|
|
2567
2876
|
export interface TypeFilterAttribute$instance extends Attribute, IFilterMetadata {
|
|
2877
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
2878
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2879
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
2880
|
+
|
|
2568
2881
|
get Arguments(): unknown[] | undefined;
|
|
2569
2882
|
set Arguments(value: unknown[] | undefined);
|
|
2570
2883
|
readonly ImplementationType: Type;
|
|
@@ -2588,6 +2901,10 @@ export type TypeFilterAttribute = TypeFilterAttribute$instance & __TypeFilterAtt
|
|
|
2588
2901
|
|
|
2589
2902
|
|
|
2590
2903
|
export interface TypeFilterAttribute_1$instance<TFilter extends IFilterMetadata> extends TypeFilterAttribute$instance, IFilterMetadata {
|
|
2904
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
2905
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
2906
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
2907
|
+
|
|
2591
2908
|
CreateInstance(serviceProvider: IServiceProvider): IFilterMetadata;
|
|
2592
2909
|
}
|
|
2593
2910
|
|
|
@@ -2606,6 +2923,9 @@ export type TypeFilterAttribute_1<TFilter extends IFilterMetadata> = TypeFilterA
|
|
|
2606
2923
|
|
|
2607
2924
|
|
|
2608
2925
|
export interface UnauthorizedObjectResult$instance extends ObjectResult$instance {
|
|
2926
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2927
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
2928
|
+
|
|
2609
2929
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
2610
2930
|
}
|
|
2611
2931
|
|
|
@@ -2624,6 +2944,10 @@ export type UnauthorizedObjectResult = UnauthorizedObjectResult$instance & __Una
|
|
|
2624
2944
|
|
|
2625
2945
|
|
|
2626
2946
|
export interface UnauthorizedResult$instance extends StatusCodeResult$instance {
|
|
2947
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2948
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IClientErrorActionResult: never;
|
|
2949
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
2950
|
+
|
|
2627
2951
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
2628
2952
|
}
|
|
2629
2953
|
|
|
@@ -2642,6 +2966,9 @@ export type UnauthorizedResult = UnauthorizedResult$instance & __UnauthorizedRes
|
|
|
2642
2966
|
|
|
2643
2967
|
|
|
2644
2968
|
export interface UnprocessableEntityObjectResult$instance extends ObjectResult$instance {
|
|
2969
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2970
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
2971
|
+
|
|
2645
2972
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
2646
2973
|
}
|
|
2647
2974
|
|
|
@@ -2661,6 +2988,10 @@ export type UnprocessableEntityObjectResult = UnprocessableEntityObjectResult$in
|
|
|
2661
2988
|
|
|
2662
2989
|
|
|
2663
2990
|
export interface UnprocessableEntityResult$instance extends StatusCodeResult$instance {
|
|
2991
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
2992
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IClientErrorActionResult: never;
|
|
2993
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
2994
|
+
|
|
2664
2995
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
2665
2996
|
}
|
|
2666
2997
|
|
|
@@ -2679,6 +3010,10 @@ export type UnprocessableEntityResult = UnprocessableEntityResult$instance & __U
|
|
|
2679
3010
|
|
|
2680
3011
|
|
|
2681
3012
|
export interface UnsupportedMediaTypeResult$instance extends StatusCodeResult$instance {
|
|
3013
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
3014
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IClientErrorActionResult: never;
|
|
3015
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
3016
|
+
|
|
2682
3017
|
ExecuteResultAsync(context: ActionContext): Task;
|
|
2683
3018
|
}
|
|
2684
3019
|
|
|
@@ -2697,6 +3032,10 @@ export type UnsupportedMediaTypeResult = UnsupportedMediaTypeResult$instance & _
|
|
|
2697
3032
|
|
|
2698
3033
|
|
|
2699
3034
|
export interface ValidateAntiForgeryTokenAttribute$instance extends Attribute, IFilterMetadata {
|
|
3035
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterFactory: never;
|
|
3036
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
3037
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IOrderedFilter: never;
|
|
3038
|
+
|
|
2700
3039
|
readonly IsReusable: boolean;
|
|
2701
3040
|
Order: int;
|
|
2702
3041
|
CreateInstance(serviceProvider: IServiceProvider): IFilterMetadata;
|
|
@@ -2773,6 +3112,9 @@ export const ViewComponentAttribute: {
|
|
|
2773
3112
|
export type ViewComponentAttribute = ViewComponentAttribute$instance;
|
|
2774
3113
|
|
|
2775
3114
|
export interface ViewComponentResult$instance extends ActionResult$instance {
|
|
3115
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
3116
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
3117
|
+
|
|
2776
3118
|
get Arguments(): unknown | undefined;
|
|
2777
3119
|
set Arguments(value: unknown | undefined);
|
|
2778
3120
|
get ContentType(): string | undefined;
|
|
@@ -2816,6 +3158,9 @@ export const ViewDataAttribute: {
|
|
|
2816
3158
|
export type ViewDataAttribute = ViewDataAttribute$instance;
|
|
2817
3159
|
|
|
2818
3160
|
export interface ViewResult$instance extends ActionResult$instance {
|
|
3161
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
3162
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Infrastructure_IStatusCodeActionResult: never;
|
|
3163
|
+
|
|
2819
3164
|
get ContentType(): string | undefined;
|
|
2820
3165
|
set ContentType(value: string | undefined);
|
|
2821
3166
|
readonly Model: unknown | undefined;
|
|
@@ -2844,6 +3189,8 @@ export type ViewResult = ViewResult$instance & __ViewResult$views;
|
|
|
2844
3189
|
|
|
2845
3190
|
|
|
2846
3191
|
export interface VirtualFileResult$instance extends FileResult$instance {
|
|
3192
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_IActionResult: never;
|
|
3193
|
+
|
|
2847
3194
|
FileName: string;
|
|
2848
3195
|
get FileProvider(): IFileProvider | undefined;
|
|
2849
3196
|
set FileProvider(value: IFileProvider | undefined);
|