@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
|
@@ -43,16 +43,18 @@ import type { RequestDecompressionOptions } from "../../Microsoft.AspNetCore.Req
|
|
|
43
43
|
import type { ResponseCachingOptions } from "../../Microsoft.AspNetCore.ResponseCaching/internal/index.js";
|
|
44
44
|
import type { RouteOptions } from "../../Microsoft.AspNetCore.Routing/internal/index.js";
|
|
45
45
|
import type { Hub, HubOptions, HubOptions_1, ISignalRBuilder, ISignalRServerBuilder, JsonHubProtocolOptions } from "../../Microsoft.AspNetCore.SignalR/internal/index.js";
|
|
46
|
-
import type {
|
|
47
|
-
import
|
|
48
|
-
import
|
|
49
|
-
import type {
|
|
50
|
-
import type { IServiceCollection } from "@tsonic/microsoft-extensions/Microsoft.Extensions.DependencyInjection.js";
|
|
51
|
-
import type { LocalizationOptions } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Localization.js";
|
|
52
|
-
import * as Microsoft_Extensions_Options_Internal from "@tsonic/microsoft-extensions/Microsoft.Extensions.Options.js";
|
|
53
|
-
import type {
|
|
46
|
+
import type { IList_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
47
|
+
import type { Assembly } from "@tsonic/dotnet/System.Reflection/internal/index.js";
|
|
48
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
49
|
+
import type { Action_1, Action_2, Boolean as ClrBoolean, Func_2, IServiceProvider, Object as ClrObject, String as ClrString, Type, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
50
|
+
import type { IServiceCollection } from "@tsonic/microsoft-extensions/Microsoft.Extensions.DependencyInjection/internal/index.js";
|
|
51
|
+
import type { LocalizationOptions } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Localization/internal/index.js";
|
|
52
|
+
import * as Microsoft_Extensions_Options_Internal from "@tsonic/microsoft-extensions/Microsoft.Extensions.Options/internal/index.js";
|
|
53
|
+
import type { IPostConfigureOptions_1 } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Options/internal/index.js";
|
|
54
54
|
|
|
55
55
|
export interface IMvcBuilder$instance {
|
|
56
|
+
readonly __tsonic_iface_Microsoft_Extensions_DependencyInjection_IMvcBuilder: never;
|
|
57
|
+
|
|
56
58
|
readonly Services: IServiceCollection;
|
|
57
59
|
readonly PartManager: ApplicationPartManager;
|
|
58
60
|
}
|
|
@@ -61,6 +63,8 @@ export interface IMvcBuilder$instance {
|
|
|
61
63
|
export type IMvcBuilder = IMvcBuilder$instance;
|
|
62
64
|
|
|
63
65
|
export interface IMvcCoreBuilder$instance {
|
|
66
|
+
readonly __tsonic_iface_Microsoft_Extensions_DependencyInjection_IMvcCoreBuilder: never;
|
|
67
|
+
|
|
64
68
|
readonly Services: IServiceCollection;
|
|
65
69
|
readonly PartManager: ApplicationPartManager;
|
|
66
70
|
}
|
|
@@ -69,6 +73,8 @@ export interface IMvcCoreBuilder$instance {
|
|
|
69
73
|
export type IMvcCoreBuilder = IMvcCoreBuilder$instance;
|
|
70
74
|
|
|
71
75
|
export interface IRazorComponentsBuilder$instance {
|
|
76
|
+
readonly __tsonic_iface_Microsoft_Extensions_DependencyInjection_IRazorComponentsBuilder: never;
|
|
77
|
+
|
|
72
78
|
readonly Services: IServiceCollection;
|
|
73
79
|
}
|
|
74
80
|
|
|
@@ -76,6 +82,8 @@ export interface IRazorComponentsBuilder$instance {
|
|
|
76
82
|
export type IRazorComponentsBuilder = IRazorComponentsBuilder$instance;
|
|
77
83
|
|
|
78
84
|
export interface IServerSideBlazorBuilder$instance extends IRazorComponentsBuilder {
|
|
85
|
+
readonly __tsonic_iface_Microsoft_Extensions_DependencyInjection_IServerSideBlazorBuilder: never;
|
|
86
|
+
|
|
79
87
|
readonly Services: IServiceCollection;
|
|
80
88
|
}
|
|
81
89
|
|
|
@@ -85,6 +93,10 @@ export interface IServerSideBlazorBuilder$instance extends IRazorComponentsBuild
|
|
|
85
93
|
export type IServerSideBlazorBuilder = IServerSideBlazorBuilder$instance;
|
|
86
94
|
|
|
87
95
|
export interface OAuthPostConfigureOptions_2$instance<TOptions extends OAuthOptions, THandler extends OAuthHandler_1<TOptions>> {
|
|
96
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyInjection_OAuthPostConfigureOptions_2: never;
|
|
97
|
+
|
|
98
|
+
readonly __tsonic_iface_Microsoft_Extensions_Options_IPostConfigureOptions_1: never;
|
|
99
|
+
|
|
88
100
|
PostConfigure(name: string, options: TOptions): void;
|
|
89
101
|
}
|
|
90
102
|
|
|
@@ -97,7 +109,7 @@ export const OAuthPostConfigureOptions_2: {
|
|
|
97
109
|
export type OAuthPostConfigureOptions_2<TOptions extends OAuthOptions, THandler extends OAuthHandler_1<TOptions>> = OAuthPostConfigureOptions_2$instance<TOptions, THandler>;
|
|
98
110
|
|
|
99
111
|
export abstract class AntiforgeryServiceCollectionExtensions$instance {
|
|
100
|
-
static AddAntiforgery(services: IServiceCollection, setupAction:
|
|
112
|
+
static AddAntiforgery(services: IServiceCollection, setupAction: Action_1<AntiforgeryOptions>): IServiceCollection;
|
|
101
113
|
static AddAntiforgery(services: IServiceCollection): IServiceCollection;
|
|
102
114
|
}
|
|
103
115
|
|
|
@@ -105,19 +117,19 @@ export abstract class AntiforgeryServiceCollectionExtensions$instance {
|
|
|
105
117
|
export type AntiforgeryServiceCollectionExtensions = AntiforgeryServiceCollectionExtensions$instance;
|
|
106
118
|
|
|
107
119
|
export abstract class ApplicationModelConventionExtensions$instance {
|
|
108
|
-
static Add(conventions:
|
|
109
|
-
static Add(conventions:
|
|
110
|
-
static Add(conventions:
|
|
111
|
-
static Add(conventions:
|
|
112
|
-
static RemoveType(list:
|
|
113
|
-
static RemoveType<TApplicationModelConvention extends IApplicationModelConvention>(list:
|
|
120
|
+
static Add(conventions: IList_1<IApplicationModelConvention>, actionModelConvention: IActionModelConvention): void;
|
|
121
|
+
static Add(conventions: IList_1<IApplicationModelConvention>, controllerModelConvention: IControllerModelConvention): void;
|
|
122
|
+
static Add(conventions: IList_1<IApplicationModelConvention>, parameterModelConvention: IParameterModelBaseConvention): void;
|
|
123
|
+
static Add(conventions: IList_1<IApplicationModelConvention>, parameterModelConvention: IParameterModelConvention): void;
|
|
124
|
+
static RemoveType(list: IList_1<IApplicationModelConvention>, type: Type): void;
|
|
125
|
+
static RemoveType<TApplicationModelConvention extends IApplicationModelConvention>(list: IList_1<IApplicationModelConvention>): void;
|
|
114
126
|
}
|
|
115
127
|
|
|
116
128
|
|
|
117
129
|
export type ApplicationModelConventionExtensions = ApplicationModelConventionExtensions$instance;
|
|
118
130
|
|
|
119
131
|
export abstract class AuthenticationCoreServiceCollectionExtensions$instance {
|
|
120
|
-
static AddAuthenticationCore(services: IServiceCollection, configureOptions:
|
|
132
|
+
static AddAuthenticationCore(services: IServiceCollection, configureOptions: Action_1<AuthenticationOptions>): IServiceCollection;
|
|
121
133
|
static AddAuthenticationCore(services: IServiceCollection): IServiceCollection;
|
|
122
134
|
}
|
|
123
135
|
|
|
@@ -125,7 +137,7 @@ export abstract class AuthenticationCoreServiceCollectionExtensions$instance {
|
|
|
125
137
|
export type AuthenticationCoreServiceCollectionExtensions = AuthenticationCoreServiceCollectionExtensions$instance;
|
|
126
138
|
|
|
127
139
|
export abstract class AuthenticationServiceCollectionExtensions$instance {
|
|
128
|
-
static AddAuthentication(services: IServiceCollection, configureOptions:
|
|
140
|
+
static AddAuthentication(services: IServiceCollection, configureOptions: Action_1<AuthenticationOptions>): AuthenticationBuilder;
|
|
129
141
|
static AddAuthentication(services: IServiceCollection, defaultScheme: string): AuthenticationBuilder;
|
|
130
142
|
static AddAuthentication(services: IServiceCollection): AuthenticationBuilder;
|
|
131
143
|
}
|
|
@@ -134,7 +146,7 @@ export abstract class AuthenticationServiceCollectionExtensions$instance {
|
|
|
134
146
|
export type AuthenticationServiceCollectionExtensions = AuthenticationServiceCollectionExtensions$instance;
|
|
135
147
|
|
|
136
148
|
export abstract class AuthorizationServiceCollectionExtensions$instance {
|
|
137
|
-
static AddAuthorizationCore(services: IServiceCollection, configure:
|
|
149
|
+
static AddAuthorizationCore(services: IServiceCollection, configure: Action_1<AuthorizationOptions>): IServiceCollection;
|
|
138
150
|
static AddAuthorizationCore(services: IServiceCollection): IServiceCollection;
|
|
139
151
|
}
|
|
140
152
|
|
|
@@ -142,8 +154,8 @@ export abstract class AuthorizationServiceCollectionExtensions$instance {
|
|
|
142
154
|
export type AuthorizationServiceCollectionExtensions = AuthorizationServiceCollectionExtensions$instance;
|
|
143
155
|
|
|
144
156
|
export abstract class BearerTokenExtensions$instance {
|
|
145
|
-
static AddBearerToken(builder: AuthenticationBuilder, configure:
|
|
146
|
-
static AddBearerToken(builder: AuthenticationBuilder, authenticationScheme: string, configure:
|
|
157
|
+
static AddBearerToken(builder: AuthenticationBuilder, configure: Action_1<BearerTokenOptions>): AuthenticationBuilder;
|
|
158
|
+
static AddBearerToken(builder: AuthenticationBuilder, authenticationScheme: string, configure: Action_1<BearerTokenOptions>): AuthenticationBuilder;
|
|
147
159
|
static AddBearerToken(builder: AuthenticationBuilder, authenticationScheme: string): AuthenticationBuilder;
|
|
148
160
|
static AddBearerToken(builder: AuthenticationBuilder): AuthenticationBuilder;
|
|
149
161
|
}
|
|
@@ -159,31 +171,31 @@ export abstract class CascadingAuthenticationStateServiceCollectionExtensions$in
|
|
|
159
171
|
export type CascadingAuthenticationStateServiceCollectionExtensions = CascadingAuthenticationStateServiceCollectionExtensions$instance;
|
|
160
172
|
|
|
161
173
|
export abstract class CascadingValueServiceCollectionExtensions$instance {
|
|
162
|
-
static AddCascadingValue<TValue>(serviceCollection: IServiceCollection, initialValueFactory:
|
|
163
|
-
static AddCascadingValue<TValue>(serviceCollection: IServiceCollection, name: string, initialValueFactory:
|
|
164
|
-
static TryAddCascadingValue<TValue>(serviceCollection: IServiceCollection, valueFactory:
|
|
165
|
-
static TryAddCascadingValue<TValue>(serviceCollection: IServiceCollection, name: string, valueFactory:
|
|
174
|
+
static AddCascadingValue<TValue>(serviceCollection: IServiceCollection, initialValueFactory: Func_2<IServiceProvider, TValue>): IServiceCollection;
|
|
175
|
+
static AddCascadingValue<TValue>(serviceCollection: IServiceCollection, name: string, initialValueFactory: Func_2<IServiceProvider, TValue>): IServiceCollection;
|
|
176
|
+
static TryAddCascadingValue<TValue>(serviceCollection: IServiceCollection, valueFactory: Func_2<IServiceProvider, TValue>): void;
|
|
177
|
+
static TryAddCascadingValue<TValue>(serviceCollection: IServiceCollection, name: string, valueFactory: Func_2<IServiceProvider, TValue>): void;
|
|
166
178
|
}
|
|
167
179
|
|
|
168
180
|
|
|
169
181
|
export type CascadingValueServiceCollectionExtensions = CascadingValueServiceCollectionExtensions$instance;
|
|
170
182
|
|
|
171
183
|
export abstract class CertificateForwardingServiceExtensions$instance {
|
|
172
|
-
static AddCertificateForwarding(services: IServiceCollection, configure:
|
|
184
|
+
static AddCertificateForwarding(services: IServiceCollection, configure: Action_1<CertificateForwardingOptions>): IServiceCollection;
|
|
173
185
|
}
|
|
174
186
|
|
|
175
187
|
|
|
176
188
|
export type CertificateForwardingServiceExtensions = CertificateForwardingServiceExtensions$instance;
|
|
177
189
|
|
|
178
190
|
export abstract class ComponentServiceCollectionExtensions$instance {
|
|
179
|
-
static AddServerSideBlazor(services: IServiceCollection, configure?:
|
|
191
|
+
static AddServerSideBlazor(services: IServiceCollection, configure?: Action_1<CircuitOptions>): IServerSideBlazorBuilder;
|
|
180
192
|
}
|
|
181
193
|
|
|
182
194
|
|
|
183
195
|
export type ComponentServiceCollectionExtensions = ComponentServiceCollectionExtensions$instance;
|
|
184
196
|
|
|
185
197
|
export abstract class ConnectionsDependencyInjectionExtensions$instance {
|
|
186
|
-
static AddConnections(services: IServiceCollection, options:
|
|
198
|
+
static AddConnections(services: IServiceCollection, options: Action_1<ConnectionOptions>): IServiceCollection;
|
|
187
199
|
static AddConnections(services: IServiceCollection): IServiceCollection;
|
|
188
200
|
}
|
|
189
201
|
|
|
@@ -191,9 +203,9 @@ export abstract class ConnectionsDependencyInjectionExtensions$instance {
|
|
|
191
203
|
export type ConnectionsDependencyInjectionExtensions = ConnectionsDependencyInjectionExtensions$instance;
|
|
192
204
|
|
|
193
205
|
export abstract class CookieExtensions$instance {
|
|
194
|
-
static AddCookie(builder: AuthenticationBuilder, configureOptions:
|
|
195
|
-
static AddCookie(builder: AuthenticationBuilder, authenticationScheme: string, configureOptions:
|
|
196
|
-
static AddCookie(builder: AuthenticationBuilder, authenticationScheme: string, displayName: string, configureOptions:
|
|
206
|
+
static AddCookie(builder: AuthenticationBuilder, configureOptions: Action_1<CookieAuthenticationOptions>): AuthenticationBuilder;
|
|
207
|
+
static AddCookie(builder: AuthenticationBuilder, authenticationScheme: string, configureOptions: Action_1<CookieAuthenticationOptions>): AuthenticationBuilder;
|
|
208
|
+
static AddCookie(builder: AuthenticationBuilder, authenticationScheme: string, displayName: string, configureOptions: Action_1<CookieAuthenticationOptions>): AuthenticationBuilder;
|
|
197
209
|
static AddCookie(builder: AuthenticationBuilder, authenticationScheme: string): AuthenticationBuilder;
|
|
198
210
|
static AddCookie(builder: AuthenticationBuilder): AuthenticationBuilder;
|
|
199
211
|
}
|
|
@@ -202,15 +214,15 @@ export abstract class CookieExtensions$instance {
|
|
|
202
214
|
export type CookieExtensions = CookieExtensions$instance;
|
|
203
215
|
|
|
204
216
|
export abstract class CookiePolicyServiceCollectionExtensions$instance {
|
|
205
|
-
static AddCookiePolicy<TService>(services: IServiceCollection, configureOptions:
|
|
206
|
-
static AddCookiePolicy(services: IServiceCollection, configureOptions:
|
|
217
|
+
static AddCookiePolicy<TService>(services: IServiceCollection, configureOptions: Action_2<CookiePolicyOptions, TService>): IServiceCollection;
|
|
218
|
+
static AddCookiePolicy(services: IServiceCollection, configureOptions: Action_1<CookiePolicyOptions>): IServiceCollection;
|
|
207
219
|
}
|
|
208
220
|
|
|
209
221
|
|
|
210
222
|
export type CookiePolicyServiceCollectionExtensions = CookiePolicyServiceCollectionExtensions$instance;
|
|
211
223
|
|
|
212
224
|
export abstract class CorsServiceCollectionExtensions$instance {
|
|
213
|
-
static AddCors(services: IServiceCollection, setupAction:
|
|
225
|
+
static AddCors(services: IServiceCollection, setupAction: Action_1<CorsOptions>): IServiceCollection;
|
|
214
226
|
static AddCors(services: IServiceCollection): IServiceCollection;
|
|
215
227
|
}
|
|
216
228
|
|
|
@@ -218,7 +230,7 @@ export abstract class CorsServiceCollectionExtensions$instance {
|
|
|
218
230
|
export type CorsServiceCollectionExtensions = CorsServiceCollectionExtensions$instance;
|
|
219
231
|
|
|
220
232
|
export abstract class DataProtectionServiceCollectionExtensions$instance {
|
|
221
|
-
static AddDataProtection(services: IServiceCollection, setupAction:
|
|
233
|
+
static AddDataProtection(services: IServiceCollection, setupAction: Action_1<DataProtectionOptions>): IDataProtectionBuilder;
|
|
222
234
|
static AddDataProtection(services: IServiceCollection): IDataProtectionBuilder;
|
|
223
235
|
}
|
|
224
236
|
|
|
@@ -240,8 +252,8 @@ export abstract class EndpointMetadataApiExplorerServiceCollectionExtensions$ins
|
|
|
240
252
|
export type EndpointMetadataApiExplorerServiceCollectionExtensions = EndpointMetadataApiExplorerServiceCollectionExtensions$instance;
|
|
241
253
|
|
|
242
254
|
export abstract class ExceptionHandlerServiceCollectionExtensions$instance {
|
|
243
|
-
static AddExceptionHandler<TService>(services: IServiceCollection, configureOptions:
|
|
244
|
-
static AddExceptionHandler(services: IServiceCollection, configureOptions:
|
|
255
|
+
static AddExceptionHandler<TService>(services: IServiceCollection, configureOptions: Action_2<ExceptionHandlerOptions, TService>): IServiceCollection;
|
|
256
|
+
static AddExceptionHandler(services: IServiceCollection, configureOptions: Action_1<ExceptionHandlerOptions>): IServiceCollection;
|
|
245
257
|
static AddExceptionHandler<T extends IExceptionHandler>(services: IServiceCollection): IServiceCollection;
|
|
246
258
|
}
|
|
247
259
|
|
|
@@ -249,17 +261,17 @@ export abstract class ExceptionHandlerServiceCollectionExtensions$instance {
|
|
|
249
261
|
export type ExceptionHandlerServiceCollectionExtensions = ExceptionHandlerServiceCollectionExtensions$instance;
|
|
250
262
|
|
|
251
263
|
export abstract class HttpJsonServiceExtensions$instance {
|
|
252
|
-
static ConfigureHttpJsonOptions(services: IServiceCollection, configureOptions:
|
|
264
|
+
static ConfigureHttpJsonOptions(services: IServiceCollection, configureOptions: Action_1<JsonOptions>): IServiceCollection;
|
|
253
265
|
}
|
|
254
266
|
|
|
255
267
|
|
|
256
268
|
export type HttpJsonServiceExtensions = HttpJsonServiceExtensions$instance;
|
|
257
269
|
|
|
258
270
|
export abstract class HttpLoggingServicesExtensions$instance {
|
|
259
|
-
static AddHttpLogging(services: IServiceCollection, configureOptions:
|
|
271
|
+
static AddHttpLogging(services: IServiceCollection, configureOptions: Action_1<HttpLoggingOptions>): IServiceCollection;
|
|
260
272
|
static AddHttpLogging(services: IServiceCollection): IServiceCollection;
|
|
261
273
|
static AddHttpLoggingInterceptor<T extends IHttpLoggingInterceptor>(services: IServiceCollection): IServiceCollection;
|
|
262
|
-
static AddW3CLogging(services: IServiceCollection, configureOptions:
|
|
274
|
+
static AddW3CLogging(services: IServiceCollection, configureOptions: Action_1<W3CLoggerOptions>): IServiceCollection;
|
|
263
275
|
}
|
|
264
276
|
|
|
265
277
|
|
|
@@ -273,19 +285,19 @@ export abstract class HttpServiceCollectionExtensions$instance {
|
|
|
273
285
|
export type HttpServiceCollectionExtensions = HttpServiceCollectionExtensions$instance;
|
|
274
286
|
|
|
275
287
|
export abstract class IdentityServiceCollectionExtensions$instance {
|
|
276
|
-
static AddIdentity<TUser, TRole>(services: IServiceCollection, setupAction:
|
|
288
|
+
static AddIdentity<TUser, TRole>(services: IServiceCollection, setupAction: Action_1<IdentityOptions>): IdentityBuilder;
|
|
277
289
|
static AddIdentity<TUser, TRole>(services: IServiceCollection): IdentityBuilder;
|
|
278
|
-
static AddIdentityApiEndpoints<TUser>(services: IServiceCollection, configure:
|
|
290
|
+
static AddIdentityApiEndpoints<TUser>(services: IServiceCollection, configure: Action_1<IdentityOptions>): IdentityBuilder;
|
|
279
291
|
static AddIdentityApiEndpoints<TUser>(services: IServiceCollection): IdentityBuilder;
|
|
280
|
-
static ConfigureApplicationCookie(services: IServiceCollection, configure:
|
|
281
|
-
static ConfigureExternalCookie(services: IServiceCollection, configure:
|
|
292
|
+
static ConfigureApplicationCookie(services: IServiceCollection, configure: Action_1<CookieAuthenticationOptions>): IServiceCollection;
|
|
293
|
+
static ConfigureExternalCookie(services: IServiceCollection, configure: Action_1<CookieAuthenticationOptions>): IServiceCollection;
|
|
282
294
|
}
|
|
283
295
|
|
|
284
296
|
|
|
285
297
|
export type IdentityServiceCollectionExtensions = IdentityServiceCollectionExtensions$instance;
|
|
286
298
|
|
|
287
299
|
export abstract class IdentityServiceCollectionExtensions2$instance {
|
|
288
|
-
static AddIdentityCore<TUser>(services: IServiceCollection, setupAction:
|
|
300
|
+
static AddIdentityCore<TUser>(services: IServiceCollection, setupAction: Action_1<IdentityOptions>): IdentityBuilder;
|
|
289
301
|
static AddIdentityCore<TUser>(services: IServiceCollection): IdentityBuilder;
|
|
290
302
|
}
|
|
291
303
|
|
|
@@ -293,7 +305,7 @@ export abstract class IdentityServiceCollectionExtensions2$instance {
|
|
|
293
305
|
export type IdentityServiceCollectionExtensions2 = IdentityServiceCollectionExtensions2$instance;
|
|
294
306
|
|
|
295
307
|
export abstract class JsonProtocolDependencyInjectionExtensions$instance {
|
|
296
|
-
static AddJsonProtocol<TBuilder extends ISignalRBuilder>(builder: TBuilder, configure:
|
|
308
|
+
static AddJsonProtocol<TBuilder extends ISignalRBuilder>(builder: TBuilder, configure: Action_1<JsonHubProtocolOptions>): TBuilder;
|
|
297
309
|
static AddJsonProtocol<TBuilder extends ISignalRBuilder>(builder: TBuilder): TBuilder;
|
|
298
310
|
}
|
|
299
311
|
|
|
@@ -310,11 +322,11 @@ export type MvcApiExplorerMvcCoreBuilderExtensions = MvcApiExplorerMvcCoreBuilde
|
|
|
310
322
|
export abstract class MvcCoreMvcBuilderExtensions$instance {
|
|
311
323
|
static AddApplicationPart(builder: IMvcBuilder, assembly: Assembly): IMvcBuilder;
|
|
312
324
|
static AddControllersAsServices(builder: IMvcBuilder): IMvcBuilder;
|
|
313
|
-
static AddFormatterMappings(builder: IMvcBuilder, setupAction:
|
|
314
|
-
static AddJsonOptions(builder: IMvcBuilder, configure:
|
|
315
|
-
static AddMvcOptions(builder: IMvcBuilder, setupAction:
|
|
316
|
-
static ConfigureApiBehaviorOptions(builder: IMvcBuilder, setupAction:
|
|
317
|
-
static ConfigureApplicationPartManager(builder: IMvcBuilder, setupAction:
|
|
325
|
+
static AddFormatterMappings(builder: IMvcBuilder, setupAction: Action_1<FormatterMappings>): IMvcBuilder;
|
|
326
|
+
static AddJsonOptions(builder: IMvcBuilder, configure: Action_1<JsonOptions__Microsoft_AspNetCore_Mvc>): IMvcBuilder;
|
|
327
|
+
static AddMvcOptions(builder: IMvcBuilder, setupAction: Action_1<MvcOptions>): IMvcBuilder;
|
|
328
|
+
static ConfigureApiBehaviorOptions(builder: IMvcBuilder, setupAction: Action_1<ApiBehaviorOptions>): IMvcBuilder;
|
|
329
|
+
static ConfigureApplicationPartManager(builder: IMvcBuilder, setupAction: Action_1<ApplicationPartManager>): IMvcBuilder;
|
|
318
330
|
static SetCompatibilityVersion(builder: IMvcBuilder, version: CompatibilityVersion): IMvcBuilder;
|
|
319
331
|
}
|
|
320
332
|
|
|
@@ -323,15 +335,15 @@ export type MvcCoreMvcBuilderExtensions = MvcCoreMvcBuilderExtensions$instance;
|
|
|
323
335
|
|
|
324
336
|
export abstract class MvcCoreMvcCoreBuilderExtensions$instance {
|
|
325
337
|
static AddApplicationPart(builder: IMvcCoreBuilder, assembly: Assembly): IMvcCoreBuilder;
|
|
326
|
-
static AddAuthorization(builder: IMvcCoreBuilder, setupAction:
|
|
338
|
+
static AddAuthorization(builder: IMvcCoreBuilder, setupAction: Action_1<AuthorizationOptions>): IMvcCoreBuilder;
|
|
327
339
|
static AddAuthorization(builder: IMvcCoreBuilder): IMvcCoreBuilder;
|
|
328
340
|
static AddControllersAsServices(builder: IMvcCoreBuilder): IMvcCoreBuilder;
|
|
329
|
-
static AddFormatterMappings(builder: IMvcCoreBuilder, setupAction:
|
|
341
|
+
static AddFormatterMappings(builder: IMvcCoreBuilder, setupAction: Action_1<FormatterMappings>): IMvcCoreBuilder;
|
|
330
342
|
static AddFormatterMappings(builder: IMvcCoreBuilder): IMvcCoreBuilder;
|
|
331
|
-
static AddJsonOptions(builder: IMvcCoreBuilder, configure:
|
|
332
|
-
static AddMvcOptions(builder: IMvcCoreBuilder, setupAction:
|
|
333
|
-
static ConfigureApiBehaviorOptions(builder: IMvcCoreBuilder, setupAction:
|
|
334
|
-
static ConfigureApplicationPartManager(builder: IMvcCoreBuilder, setupAction:
|
|
343
|
+
static AddJsonOptions(builder: IMvcCoreBuilder, configure: Action_1<JsonOptions__Microsoft_AspNetCore_Mvc>): IMvcCoreBuilder;
|
|
344
|
+
static AddMvcOptions(builder: IMvcCoreBuilder, setupAction: Action_1<MvcOptions>): IMvcCoreBuilder;
|
|
345
|
+
static ConfigureApiBehaviorOptions(builder: IMvcCoreBuilder, setupAction: Action_1<ApiBehaviorOptions>): IMvcCoreBuilder;
|
|
346
|
+
static ConfigureApplicationPartManager(builder: IMvcCoreBuilder, setupAction: Action_1<ApplicationPartManager>): IMvcCoreBuilder;
|
|
335
347
|
static SetCompatibilityVersion(builder: IMvcCoreBuilder, version: CompatibilityVersion): IMvcCoreBuilder;
|
|
336
348
|
}
|
|
337
349
|
|
|
@@ -339,7 +351,7 @@ export abstract class MvcCoreMvcCoreBuilderExtensions$instance {
|
|
|
339
351
|
export type MvcCoreMvcCoreBuilderExtensions = MvcCoreMvcCoreBuilderExtensions$instance;
|
|
340
352
|
|
|
341
353
|
export abstract class MvcCoreServiceCollectionExtensions$instance {
|
|
342
|
-
static AddMvcCore(services: IServiceCollection, setupAction:
|
|
354
|
+
static AddMvcCore(services: IServiceCollection, setupAction: Action_1<MvcOptions>): IMvcCoreBuilder;
|
|
343
355
|
static AddMvcCore(services: IServiceCollection): IMvcCoreBuilder;
|
|
344
356
|
}
|
|
345
357
|
|
|
@@ -347,16 +359,16 @@ export abstract class MvcCoreServiceCollectionExtensions$instance {
|
|
|
347
359
|
export type MvcCoreServiceCollectionExtensions = MvcCoreServiceCollectionExtensions$instance;
|
|
348
360
|
|
|
349
361
|
export abstract class MvcCorsMvcCoreBuilderExtensions$instance {
|
|
350
|
-
static AddCors(builder: IMvcCoreBuilder, setupAction:
|
|
362
|
+
static AddCors(builder: IMvcCoreBuilder, setupAction: Action_1<CorsOptions>): IMvcCoreBuilder;
|
|
351
363
|
static AddCors(builder: IMvcCoreBuilder): IMvcCoreBuilder;
|
|
352
|
-
static ConfigureCors(builder: IMvcCoreBuilder, setupAction:
|
|
364
|
+
static ConfigureCors(builder: IMvcCoreBuilder, setupAction: Action_1<CorsOptions>): IMvcCoreBuilder;
|
|
353
365
|
}
|
|
354
366
|
|
|
355
367
|
|
|
356
368
|
export type MvcCorsMvcCoreBuilderExtensions = MvcCorsMvcCoreBuilderExtensions$instance;
|
|
357
369
|
|
|
358
370
|
export abstract class MvcDataAnnotationsMvcBuilderExtensions$instance {
|
|
359
|
-
static AddDataAnnotationsLocalization(builder: IMvcBuilder, setupAction:
|
|
371
|
+
static AddDataAnnotationsLocalization(builder: IMvcBuilder, setupAction: Action_1<MvcDataAnnotationsLocalizationOptions>): IMvcBuilder;
|
|
360
372
|
static AddDataAnnotationsLocalization(builder: IMvcBuilder): IMvcBuilder;
|
|
361
373
|
}
|
|
362
374
|
|
|
@@ -365,7 +377,7 @@ export type MvcDataAnnotationsMvcBuilderExtensions = MvcDataAnnotationsMvcBuilde
|
|
|
365
377
|
|
|
366
378
|
export abstract class MvcDataAnnotationsMvcCoreBuilderExtensions$instance {
|
|
367
379
|
static AddDataAnnotations(builder: IMvcCoreBuilder): IMvcCoreBuilder;
|
|
368
|
-
static AddDataAnnotationsLocalization(builder: IMvcCoreBuilder, setupAction:
|
|
380
|
+
static AddDataAnnotationsLocalization(builder: IMvcCoreBuilder, setupAction: Action_1<MvcDataAnnotationsLocalizationOptions>): IMvcCoreBuilder;
|
|
369
381
|
static AddDataAnnotationsLocalization(builder: IMvcCoreBuilder): IMvcCoreBuilder;
|
|
370
382
|
}
|
|
371
383
|
|
|
@@ -373,17 +385,17 @@ export abstract class MvcDataAnnotationsMvcCoreBuilderExtensions$instance {
|
|
|
373
385
|
export type MvcDataAnnotationsMvcCoreBuilderExtensions = MvcDataAnnotationsMvcCoreBuilderExtensions$instance;
|
|
374
386
|
|
|
375
387
|
export abstract class MvcLocalizationMvcBuilderExtensions$instance {
|
|
376
|
-
static AddMvcLocalization(builder: IMvcBuilder, format: LanguageViewLocationExpanderFormat, dataAnnotationsLocalizationOptionsSetupAction:
|
|
388
|
+
static AddMvcLocalization(builder: IMvcBuilder, format: LanguageViewLocationExpanderFormat, dataAnnotationsLocalizationOptionsSetupAction: Action_1<MvcDataAnnotationsLocalizationOptions>): IMvcBuilder;
|
|
377
389
|
static AddMvcLocalization(builder: IMvcBuilder, format: LanguageViewLocationExpanderFormat): IMvcBuilder;
|
|
378
|
-
static AddMvcLocalization(builder: IMvcBuilder, dataAnnotationsLocalizationOptionsSetupAction:
|
|
379
|
-
static AddMvcLocalization(builder: IMvcBuilder, localizationOptionsSetupAction:
|
|
380
|
-
static AddMvcLocalization(builder: IMvcBuilder, localizationOptionsSetupAction:
|
|
381
|
-
static AddMvcLocalization(builder: IMvcBuilder, localizationOptionsSetupAction:
|
|
382
|
-
static AddMvcLocalization(builder: IMvcBuilder, localizationOptionsSetupAction:
|
|
390
|
+
static AddMvcLocalization(builder: IMvcBuilder, dataAnnotationsLocalizationOptionsSetupAction: Action_1<MvcDataAnnotationsLocalizationOptions>): IMvcBuilder;
|
|
391
|
+
static AddMvcLocalization(builder: IMvcBuilder, localizationOptionsSetupAction: Action_1<LocalizationOptions>, format: LanguageViewLocationExpanderFormat, dataAnnotationsLocalizationOptionsSetupAction: Action_1<MvcDataAnnotationsLocalizationOptions>): IMvcBuilder;
|
|
392
|
+
static AddMvcLocalization(builder: IMvcBuilder, localizationOptionsSetupAction: Action_1<LocalizationOptions>, format: LanguageViewLocationExpanderFormat): IMvcBuilder;
|
|
393
|
+
static AddMvcLocalization(builder: IMvcBuilder, localizationOptionsSetupAction: Action_1<LocalizationOptions>, dataAnnotationsLocalizationOptionsSetupAction: Action_1<MvcDataAnnotationsLocalizationOptions>): IMvcBuilder;
|
|
394
|
+
static AddMvcLocalization(builder: IMvcBuilder, localizationOptionsSetupAction: Action_1<LocalizationOptions>): IMvcBuilder;
|
|
383
395
|
static AddMvcLocalization(builder: IMvcBuilder): IMvcBuilder;
|
|
384
|
-
static AddViewLocalization(builder: IMvcBuilder, format: LanguageViewLocationExpanderFormat, setupAction:
|
|
396
|
+
static AddViewLocalization(builder: IMvcBuilder, format: LanguageViewLocationExpanderFormat, setupAction: Action_1<LocalizationOptions>): IMvcBuilder;
|
|
385
397
|
static AddViewLocalization(builder: IMvcBuilder, format: LanguageViewLocationExpanderFormat): IMvcBuilder;
|
|
386
|
-
static AddViewLocalization(builder: IMvcBuilder, setupAction:
|
|
398
|
+
static AddViewLocalization(builder: IMvcBuilder, setupAction: Action_1<LocalizationOptions>): IMvcBuilder;
|
|
387
399
|
static AddViewLocalization(builder: IMvcBuilder): IMvcBuilder;
|
|
388
400
|
}
|
|
389
401
|
|
|
@@ -391,17 +403,17 @@ export abstract class MvcLocalizationMvcBuilderExtensions$instance {
|
|
|
391
403
|
export type MvcLocalizationMvcBuilderExtensions = MvcLocalizationMvcBuilderExtensions$instance;
|
|
392
404
|
|
|
393
405
|
export abstract class MvcLocalizationMvcCoreBuilderExtensions$instance {
|
|
394
|
-
static AddMvcLocalization(builder: IMvcCoreBuilder, format: LanguageViewLocationExpanderFormat, dataAnnotationsLocalizationOptionsSetupAction:
|
|
406
|
+
static AddMvcLocalization(builder: IMvcCoreBuilder, format: LanguageViewLocationExpanderFormat, dataAnnotationsLocalizationOptionsSetupAction: Action_1<MvcDataAnnotationsLocalizationOptions>): IMvcCoreBuilder;
|
|
395
407
|
static AddMvcLocalization(builder: IMvcCoreBuilder, format: LanguageViewLocationExpanderFormat): IMvcCoreBuilder;
|
|
396
|
-
static AddMvcLocalization(builder: IMvcCoreBuilder, dataAnnotationsLocalizationOptionsSetupAction:
|
|
397
|
-
static AddMvcLocalization(builder: IMvcCoreBuilder, localizationOptionsSetupAction:
|
|
398
|
-
static AddMvcLocalization(builder: IMvcCoreBuilder, localizationOptionsSetupAction:
|
|
399
|
-
static AddMvcLocalization(builder: IMvcCoreBuilder, localizationOptionsSetupAction:
|
|
400
|
-
static AddMvcLocalization(builder: IMvcCoreBuilder, localizationOptionsSetupAction:
|
|
408
|
+
static AddMvcLocalization(builder: IMvcCoreBuilder, dataAnnotationsLocalizationOptionsSetupAction: Action_1<MvcDataAnnotationsLocalizationOptions>): IMvcCoreBuilder;
|
|
409
|
+
static AddMvcLocalization(builder: IMvcCoreBuilder, localizationOptionsSetupAction: Action_1<LocalizationOptions>, format: LanguageViewLocationExpanderFormat, dataAnnotationsLocalizationOptionsSetupAction: Action_1<MvcDataAnnotationsLocalizationOptions>): IMvcCoreBuilder;
|
|
410
|
+
static AddMvcLocalization(builder: IMvcCoreBuilder, localizationOptionsSetupAction: Action_1<LocalizationOptions>, format: LanguageViewLocationExpanderFormat): IMvcCoreBuilder;
|
|
411
|
+
static AddMvcLocalization(builder: IMvcCoreBuilder, localizationOptionsSetupAction: Action_1<LocalizationOptions>, dataAnnotationsLocalizationOptionsSetupAction: Action_1<MvcDataAnnotationsLocalizationOptions>): IMvcCoreBuilder;
|
|
412
|
+
static AddMvcLocalization(builder: IMvcCoreBuilder, localizationOptionsSetupAction: Action_1<LocalizationOptions>): IMvcCoreBuilder;
|
|
401
413
|
static AddMvcLocalization(builder: IMvcCoreBuilder): IMvcCoreBuilder;
|
|
402
|
-
static AddViewLocalization(builder: IMvcCoreBuilder, format: LanguageViewLocationExpanderFormat, setupAction:
|
|
414
|
+
static AddViewLocalization(builder: IMvcCoreBuilder, format: LanguageViewLocationExpanderFormat, setupAction: Action_1<LocalizationOptions>): IMvcCoreBuilder;
|
|
403
415
|
static AddViewLocalization(builder: IMvcCoreBuilder, format: LanguageViewLocationExpanderFormat): IMvcCoreBuilder;
|
|
404
|
-
static AddViewLocalization(builder: IMvcCoreBuilder, setupAction:
|
|
416
|
+
static AddViewLocalization(builder: IMvcCoreBuilder, setupAction: Action_1<LocalizationOptions>): IMvcCoreBuilder;
|
|
405
417
|
static AddViewLocalization(builder: IMvcCoreBuilder): IMvcCoreBuilder;
|
|
406
418
|
}
|
|
407
419
|
|
|
@@ -409,26 +421,26 @@ export abstract class MvcLocalizationMvcCoreBuilderExtensions$instance {
|
|
|
409
421
|
export type MvcLocalizationMvcCoreBuilderExtensions = MvcLocalizationMvcCoreBuilderExtensions$instance;
|
|
410
422
|
|
|
411
423
|
export abstract class MvcRazorMvcBuilderExtensions$instance {
|
|
412
|
-
static AddRazorOptions(builder: IMvcBuilder, setupAction:
|
|
424
|
+
static AddRazorOptions(builder: IMvcBuilder, setupAction: Action_1<RazorViewEngineOptions>): IMvcBuilder;
|
|
413
425
|
static AddTagHelpersAsServices(builder: IMvcBuilder): IMvcBuilder;
|
|
414
|
-
static InitializeTagHelper<TTagHelper extends ITagHelper>(builder: IMvcBuilder, initialize:
|
|
426
|
+
static InitializeTagHelper<TTagHelper extends ITagHelper>(builder: IMvcBuilder, initialize: Action_2<TTagHelper, ViewContext>): IMvcBuilder;
|
|
415
427
|
}
|
|
416
428
|
|
|
417
429
|
|
|
418
430
|
export type MvcRazorMvcBuilderExtensions = MvcRazorMvcBuilderExtensions$instance;
|
|
419
431
|
|
|
420
432
|
export abstract class MvcRazorMvcCoreBuilderExtensions$instance {
|
|
421
|
-
static AddRazorViewEngine(builder: IMvcCoreBuilder, setupAction:
|
|
433
|
+
static AddRazorViewEngine(builder: IMvcCoreBuilder, setupAction: Action_1<RazorViewEngineOptions>): IMvcCoreBuilder;
|
|
422
434
|
static AddRazorViewEngine(builder: IMvcCoreBuilder): IMvcCoreBuilder;
|
|
423
435
|
static AddTagHelpersAsServices(builder: IMvcCoreBuilder): IMvcCoreBuilder;
|
|
424
|
-
static InitializeTagHelper<TTagHelper extends ITagHelper>(builder: IMvcCoreBuilder, initialize:
|
|
436
|
+
static InitializeTagHelper<TTagHelper extends ITagHelper>(builder: IMvcCoreBuilder, initialize: Action_2<TTagHelper, ViewContext>): IMvcCoreBuilder;
|
|
425
437
|
}
|
|
426
438
|
|
|
427
439
|
|
|
428
440
|
export type MvcRazorMvcCoreBuilderExtensions = MvcRazorMvcCoreBuilderExtensions$instance;
|
|
429
441
|
|
|
430
442
|
export abstract class MvcRazorPagesMvcBuilderExtensions$instance {
|
|
431
|
-
static AddRazorPagesOptions(builder: IMvcBuilder, setupAction:
|
|
443
|
+
static AddRazorPagesOptions(builder: IMvcBuilder, setupAction: Action_1<RazorPagesOptions>): IMvcBuilder;
|
|
432
444
|
static WithRazorPagesAtContentRoot(builder: IMvcBuilder): IMvcBuilder;
|
|
433
445
|
static WithRazorPagesRoot(builder: IMvcBuilder, rootDirectory: string): IMvcBuilder;
|
|
434
446
|
}
|
|
@@ -437,7 +449,7 @@ export abstract class MvcRazorPagesMvcBuilderExtensions$instance {
|
|
|
437
449
|
export type MvcRazorPagesMvcBuilderExtensions = MvcRazorPagesMvcBuilderExtensions$instance;
|
|
438
450
|
|
|
439
451
|
export abstract class MvcRazorPagesMvcCoreBuilderExtensions$instance {
|
|
440
|
-
static AddRazorPages(builder: IMvcCoreBuilder, setupAction:
|
|
452
|
+
static AddRazorPages(builder: IMvcCoreBuilder, setupAction: Action_1<RazorPagesOptions>): IMvcCoreBuilder;
|
|
441
453
|
static AddRazorPages(builder: IMvcCoreBuilder): IMvcCoreBuilder;
|
|
442
454
|
static WithRazorPagesRoot(builder: IMvcCoreBuilder, rootDirectory: string): IMvcCoreBuilder;
|
|
443
455
|
}
|
|
@@ -446,13 +458,13 @@ export abstract class MvcRazorPagesMvcCoreBuilderExtensions$instance {
|
|
|
446
458
|
export type MvcRazorPagesMvcCoreBuilderExtensions = MvcRazorPagesMvcCoreBuilderExtensions$instance;
|
|
447
459
|
|
|
448
460
|
export abstract class MvcServiceCollectionExtensions$instance {
|
|
449
|
-
static AddControllers(services: IServiceCollection, configure:
|
|
461
|
+
static AddControllers(services: IServiceCollection, configure: Action_1<MvcOptions>): IMvcBuilder;
|
|
450
462
|
static AddControllers(services: IServiceCollection): IMvcBuilder;
|
|
451
|
-
static AddControllersWithViews(services: IServiceCollection, configure:
|
|
463
|
+
static AddControllersWithViews(services: IServiceCollection, configure: Action_1<MvcOptions>): IMvcBuilder;
|
|
452
464
|
static AddControllersWithViews(services: IServiceCollection): IMvcBuilder;
|
|
453
|
-
static AddMvc(services: IServiceCollection, setupAction:
|
|
465
|
+
static AddMvc(services: IServiceCollection, setupAction: Action_1<MvcOptions>): IMvcBuilder;
|
|
454
466
|
static AddMvc(services: IServiceCollection): IMvcBuilder;
|
|
455
|
-
static AddRazorPages(services: IServiceCollection, configure:
|
|
467
|
+
static AddRazorPages(services: IServiceCollection, configure: Action_1<RazorPagesOptions>): IMvcBuilder;
|
|
456
468
|
static AddRazorPages(services: IServiceCollection): IMvcBuilder;
|
|
457
469
|
}
|
|
458
470
|
|
|
@@ -460,32 +472,32 @@ export abstract class MvcServiceCollectionExtensions$instance {
|
|
|
460
472
|
export type MvcServiceCollectionExtensions = MvcServiceCollectionExtensions$instance;
|
|
461
473
|
|
|
462
474
|
export abstract class MvcViewFeaturesMvcBuilderExtensions$instance {
|
|
463
|
-
static AddCookieTempDataProvider(builder: IMvcBuilder, setupAction:
|
|
475
|
+
static AddCookieTempDataProvider(builder: IMvcBuilder, setupAction: Action_1<CookieTempDataProviderOptions>): IMvcBuilder;
|
|
464
476
|
static AddCookieTempDataProvider(builder: IMvcBuilder): IMvcBuilder;
|
|
465
477
|
static AddSessionStateTempDataProvider(builder: IMvcBuilder): IMvcBuilder;
|
|
466
478
|
static AddViewComponentsAsServices(builder: IMvcBuilder): IMvcBuilder;
|
|
467
|
-
static AddViewOptions(builder: IMvcBuilder, setupAction:
|
|
479
|
+
static AddViewOptions(builder: IMvcBuilder, setupAction: Action_1<MvcViewOptions>): IMvcBuilder;
|
|
468
480
|
}
|
|
469
481
|
|
|
470
482
|
|
|
471
483
|
export type MvcViewFeaturesMvcBuilderExtensions = MvcViewFeaturesMvcBuilderExtensions$instance;
|
|
472
484
|
|
|
473
485
|
export abstract class MvcViewFeaturesMvcCoreBuilderExtensions$instance {
|
|
474
|
-
static AddCookieTempDataProvider(builder: IMvcCoreBuilder, setupAction:
|
|
486
|
+
static AddCookieTempDataProvider(builder: IMvcCoreBuilder, setupAction: Action_1<CookieTempDataProviderOptions>): IMvcCoreBuilder;
|
|
475
487
|
static AddCookieTempDataProvider(builder: IMvcCoreBuilder): IMvcCoreBuilder;
|
|
476
|
-
static AddViews(builder: IMvcCoreBuilder, setupAction:
|
|
488
|
+
static AddViews(builder: IMvcCoreBuilder, setupAction: Action_1<MvcViewOptions>): IMvcCoreBuilder;
|
|
477
489
|
static AddViews(builder: IMvcCoreBuilder): IMvcCoreBuilder;
|
|
478
|
-
static ConfigureViews(builder: IMvcCoreBuilder, setupAction:
|
|
490
|
+
static ConfigureViews(builder: IMvcCoreBuilder, setupAction: Action_1<MvcViewOptions>): IMvcCoreBuilder;
|
|
479
491
|
}
|
|
480
492
|
|
|
481
493
|
|
|
482
494
|
export type MvcViewFeaturesMvcCoreBuilderExtensions = MvcViewFeaturesMvcCoreBuilderExtensions$instance;
|
|
483
495
|
|
|
484
496
|
export abstract class MvcXmlMvcBuilderExtensions$instance {
|
|
485
|
-
static AddXmlDataContractSerializerFormatters(builder: IMvcBuilder, setupAction:
|
|
497
|
+
static AddXmlDataContractSerializerFormatters(builder: IMvcBuilder, setupAction: Action_1<MvcXmlOptions>): IMvcBuilder;
|
|
486
498
|
static AddXmlDataContractSerializerFormatters(builder: IMvcBuilder): IMvcBuilder;
|
|
487
|
-
static AddXmlOptions(builder: IMvcBuilder, setupAction:
|
|
488
|
-
static AddXmlSerializerFormatters(builder: IMvcBuilder, setupAction:
|
|
499
|
+
static AddXmlOptions(builder: IMvcBuilder, setupAction: Action_1<MvcXmlOptions>): IMvcBuilder;
|
|
500
|
+
static AddXmlSerializerFormatters(builder: IMvcBuilder, setupAction: Action_1<MvcXmlOptions>): IMvcBuilder;
|
|
489
501
|
static AddXmlSerializerFormatters(builder: IMvcBuilder): IMvcBuilder;
|
|
490
502
|
}
|
|
491
503
|
|
|
@@ -493,10 +505,10 @@ export abstract class MvcXmlMvcBuilderExtensions$instance {
|
|
|
493
505
|
export type MvcXmlMvcBuilderExtensions = MvcXmlMvcBuilderExtensions$instance;
|
|
494
506
|
|
|
495
507
|
export abstract class MvcXmlMvcCoreBuilderExtensions$instance {
|
|
496
|
-
static AddXmlDataContractSerializerFormatters(builder: IMvcCoreBuilder, setupAction:
|
|
508
|
+
static AddXmlDataContractSerializerFormatters(builder: IMvcCoreBuilder, setupAction: Action_1<MvcXmlOptions>): IMvcCoreBuilder;
|
|
497
509
|
static AddXmlDataContractSerializerFormatters(builder: IMvcCoreBuilder): IMvcCoreBuilder;
|
|
498
|
-
static AddXmlOptions(builder: IMvcCoreBuilder, setupAction:
|
|
499
|
-
static AddXmlSerializerFormatters(builder: IMvcCoreBuilder, setupAction:
|
|
510
|
+
static AddXmlOptions(builder: IMvcCoreBuilder, setupAction: Action_1<MvcXmlOptions>): IMvcCoreBuilder;
|
|
511
|
+
static AddXmlSerializerFormatters(builder: IMvcCoreBuilder, setupAction: Action_1<MvcXmlOptions>): IMvcCoreBuilder;
|
|
500
512
|
static AddXmlSerializerFormatters(builder: IMvcCoreBuilder): IMvcCoreBuilder;
|
|
501
513
|
}
|
|
502
514
|
|
|
@@ -504,10 +516,10 @@ export abstract class MvcXmlMvcCoreBuilderExtensions$instance {
|
|
|
504
516
|
export type MvcXmlMvcCoreBuilderExtensions = MvcXmlMvcCoreBuilderExtensions$instance;
|
|
505
517
|
|
|
506
518
|
export abstract class OAuthExtensions$instance {
|
|
507
|
-
static AddOAuth<TOptions extends OAuthOptions, THandler extends OAuthHandler_1<TOptions>>(builder: AuthenticationBuilder, authenticationScheme: string, configureOptions:
|
|
508
|
-
static AddOAuth(builder: AuthenticationBuilder, authenticationScheme: string, configureOptions:
|
|
509
|
-
static AddOAuth<TOptions extends OAuthOptions, THandler extends OAuthHandler_1<TOptions>>(builder: AuthenticationBuilder, authenticationScheme: string, displayName: string, configureOptions:
|
|
510
|
-
static AddOAuth(builder: AuthenticationBuilder, authenticationScheme: string, displayName: string, configureOptions:
|
|
519
|
+
static AddOAuth<TOptions extends OAuthOptions, THandler extends OAuthHandler_1<TOptions>>(builder: AuthenticationBuilder, authenticationScheme: string, configureOptions: Action_1<TOptions>): AuthenticationBuilder;
|
|
520
|
+
static AddOAuth(builder: AuthenticationBuilder, authenticationScheme: string, configureOptions: Action_1<OAuthOptions>): AuthenticationBuilder;
|
|
521
|
+
static AddOAuth<TOptions extends OAuthOptions, THandler extends OAuthHandler_1<TOptions>>(builder: AuthenticationBuilder, authenticationScheme: string, displayName: string, configureOptions: Action_1<TOptions>): AuthenticationBuilder;
|
|
522
|
+
static AddOAuth(builder: AuthenticationBuilder, authenticationScheme: string, displayName: string, configureOptions: Action_1<OAuthOptions>): AuthenticationBuilder;
|
|
511
523
|
}
|
|
512
524
|
|
|
513
525
|
|
|
@@ -515,8 +527,8 @@ export type OAuthExtensions = OAuthExtensions$instance;
|
|
|
515
527
|
|
|
516
528
|
export abstract class OutputCacheConventionBuilderExtensions$instance {
|
|
517
529
|
static CacheOutput<TBuilder extends IEndpointConventionBuilder>(builder: TBuilder, policy: IOutputCachePolicy): TBuilder;
|
|
518
|
-
static CacheOutput<TBuilder extends IEndpointConventionBuilder>(builder: TBuilder, policy:
|
|
519
|
-
static CacheOutput<TBuilder extends IEndpointConventionBuilder>(builder: TBuilder, policy:
|
|
530
|
+
static CacheOutput<TBuilder extends IEndpointConventionBuilder>(builder: TBuilder, policy: Action_1<OutputCachePolicyBuilder>, excludeDefaultPolicy: boolean): TBuilder;
|
|
531
|
+
static CacheOutput<TBuilder extends IEndpointConventionBuilder>(builder: TBuilder, policy: Action_1<OutputCachePolicyBuilder>): TBuilder;
|
|
520
532
|
static CacheOutput<TBuilder extends IEndpointConventionBuilder>(builder: TBuilder, policyName: string): TBuilder;
|
|
521
533
|
static CacheOutput<TBuilder extends IEndpointConventionBuilder>(builder: TBuilder): TBuilder;
|
|
522
534
|
}
|
|
@@ -525,7 +537,7 @@ export abstract class OutputCacheConventionBuilderExtensions$instance {
|
|
|
525
537
|
export type OutputCacheConventionBuilderExtensions = OutputCacheConventionBuilderExtensions$instance;
|
|
526
538
|
|
|
527
539
|
export abstract class OutputCacheServiceCollectionExtensions$instance {
|
|
528
|
-
static AddOutputCache(services: IServiceCollection, configureOptions:
|
|
540
|
+
static AddOutputCache(services: IServiceCollection, configureOptions: Action_1<OutputCacheOptions>): IServiceCollection;
|
|
529
541
|
static AddOutputCache(services: IServiceCollection): IServiceCollection;
|
|
530
542
|
}
|
|
531
543
|
|
|
@@ -549,14 +561,14 @@ export abstract class PageConventionCollectionExtensions$instance {
|
|
|
549
561
|
static AuthorizePage(conventions: PageConventionCollection, pageName: string, policy: string): PageConventionCollection;
|
|
550
562
|
static AuthorizePage(conventions: PageConventionCollection, pageName: string): PageConventionCollection;
|
|
551
563
|
static ConfigureFilter(conventions: PageConventionCollection, filter: IFilterMetadata): PageConventionCollection;
|
|
552
|
-
static ConfigureFilter(conventions: PageConventionCollection, factory:
|
|
564
|
+
static ConfigureFilter(conventions: PageConventionCollection, factory: Func_2<PageApplicationModel, IFilterMetadata>): IPageApplicationModelConvention;
|
|
553
565
|
}
|
|
554
566
|
|
|
555
567
|
|
|
556
568
|
export type PageConventionCollectionExtensions = PageConventionCollectionExtensions$instance;
|
|
557
569
|
|
|
558
570
|
export abstract class PolicyServiceCollectionExtensions$instance {
|
|
559
|
-
static AddAuthorization(services: IServiceCollection, configure:
|
|
571
|
+
static AddAuthorization(services: IServiceCollection, configure: Action_1<AuthorizationOptions>): IServiceCollection;
|
|
560
572
|
static AddAuthorization(services: IServiceCollection): IServiceCollection;
|
|
561
573
|
static AddAuthorizationBuilder(services: IServiceCollection): AuthorizationBuilder;
|
|
562
574
|
static AddAuthorizationPolicyEvaluator(services: IServiceCollection): IServiceCollection;
|
|
@@ -566,7 +578,7 @@ export abstract class PolicyServiceCollectionExtensions$instance {
|
|
|
566
578
|
export type PolicyServiceCollectionExtensions = PolicyServiceCollectionExtensions$instance;
|
|
567
579
|
|
|
568
580
|
export abstract class ProblemDetailsServiceCollectionExtensions$instance {
|
|
569
|
-
static AddProblemDetails(services: IServiceCollection, configure:
|
|
581
|
+
static AddProblemDetails(services: IServiceCollection, configure: Action_1<ProblemDetailsOptions>): IServiceCollection;
|
|
570
582
|
static AddProblemDetails(services: IServiceCollection): IServiceCollection;
|
|
571
583
|
}
|
|
572
584
|
|
|
@@ -581,14 +593,14 @@ export abstract class RazorComponentsRazorComponentBuilderExtensions$instance {
|
|
|
581
593
|
export type RazorComponentsRazorComponentBuilderExtensions = RazorComponentsRazorComponentBuilderExtensions$instance;
|
|
582
594
|
|
|
583
595
|
export abstract class RazorComponentsServiceCollectionExtensions$instance {
|
|
584
|
-
static AddRazorComponents(services: IServiceCollection, configure?:
|
|
596
|
+
static AddRazorComponents(services: IServiceCollection, configure?: Action_1<RazorComponentsServiceOptions>): IRazorComponentsBuilder;
|
|
585
597
|
}
|
|
586
598
|
|
|
587
599
|
|
|
588
600
|
export type RazorComponentsServiceCollectionExtensions = RazorComponentsServiceCollectionExtensions$instance;
|
|
589
601
|
|
|
590
602
|
export abstract class RequestDecompressionServiceExtensions$instance {
|
|
591
|
-
static AddRequestDecompression(services: IServiceCollection, configureOptions:
|
|
603
|
+
static AddRequestDecompression(services: IServiceCollection, configureOptions: Action_1<RequestDecompressionOptions>): IServiceCollection;
|
|
592
604
|
static AddRequestDecompression(services: IServiceCollection): IServiceCollection;
|
|
593
605
|
}
|
|
594
606
|
|
|
@@ -596,15 +608,15 @@ export abstract class RequestDecompressionServiceExtensions$instance {
|
|
|
596
608
|
export type RequestDecompressionServiceExtensions = RequestDecompressionServiceExtensions$instance;
|
|
597
609
|
|
|
598
610
|
export abstract class RequestLocalizationServiceCollectionExtensions$instance {
|
|
599
|
-
static AddRequestLocalization<TService>(services: IServiceCollection, configureOptions:
|
|
600
|
-
static AddRequestLocalization(services: IServiceCollection, configureOptions:
|
|
611
|
+
static AddRequestLocalization<TService>(services: IServiceCollection, configureOptions: Action_2<RequestLocalizationOptions, TService>): IServiceCollection;
|
|
612
|
+
static AddRequestLocalization(services: IServiceCollection, configureOptions: Action_1<RequestLocalizationOptions>): IServiceCollection;
|
|
601
613
|
}
|
|
602
614
|
|
|
603
615
|
|
|
604
616
|
export type RequestLocalizationServiceCollectionExtensions = RequestLocalizationServiceCollectionExtensions$instance;
|
|
605
617
|
|
|
606
618
|
export abstract class RequestTimeoutsIServiceCollectionExtensions$instance {
|
|
607
|
-
static AddRequestTimeouts(services: IServiceCollection, configure:
|
|
619
|
+
static AddRequestTimeouts(services: IServiceCollection, configure: Action_1<RequestTimeoutOptions>): IServiceCollection;
|
|
608
620
|
static AddRequestTimeouts(services: IServiceCollection): IServiceCollection;
|
|
609
621
|
}
|
|
610
622
|
|
|
@@ -612,7 +624,7 @@ export abstract class RequestTimeoutsIServiceCollectionExtensions$instance {
|
|
|
612
624
|
export type RequestTimeoutsIServiceCollectionExtensions = RequestTimeoutsIServiceCollectionExtensions$instance;
|
|
613
625
|
|
|
614
626
|
export abstract class ResponseCachingServicesExtensions$instance {
|
|
615
|
-
static AddResponseCaching(services: IServiceCollection, configureOptions:
|
|
627
|
+
static AddResponseCaching(services: IServiceCollection, configureOptions: Action_1<ResponseCachingOptions>): IServiceCollection;
|
|
616
628
|
static AddResponseCaching(services: IServiceCollection): IServiceCollection;
|
|
617
629
|
}
|
|
618
630
|
|
|
@@ -620,7 +632,7 @@ export abstract class ResponseCachingServicesExtensions$instance {
|
|
|
620
632
|
export type ResponseCachingServicesExtensions = ResponseCachingServicesExtensions$instance;
|
|
621
633
|
|
|
622
634
|
export abstract class RoutingServiceCollectionExtensions$instance {
|
|
623
|
-
static AddRouting(services: IServiceCollection, configureOptions:
|
|
635
|
+
static AddRouting(services: IServiceCollection, configureOptions: Action_1<RouteOptions>): IServiceCollection;
|
|
624
636
|
static AddRouting(services: IServiceCollection): IServiceCollection;
|
|
625
637
|
static AddRoutingCore(services: IServiceCollection): IServiceCollection;
|
|
626
638
|
}
|
|
@@ -629,22 +641,22 @@ export abstract class RoutingServiceCollectionExtensions$instance {
|
|
|
629
641
|
export type RoutingServiceCollectionExtensions = RoutingServiceCollectionExtensions$instance;
|
|
630
642
|
|
|
631
643
|
export abstract class ServerRazorComponentsBuilderExtensions$instance {
|
|
632
|
-
static AddInteractiveServerComponents(builder: IRazorComponentsBuilder, configure?:
|
|
644
|
+
static AddInteractiveServerComponents(builder: IRazorComponentsBuilder, configure?: Action_1<CircuitOptions>): IServerSideBlazorBuilder;
|
|
633
645
|
}
|
|
634
646
|
|
|
635
647
|
|
|
636
648
|
export type ServerRazorComponentsBuilderExtensions = ServerRazorComponentsBuilderExtensions$instance;
|
|
637
649
|
|
|
638
650
|
export abstract class ServerSideBlazorBuilderExtensions$instance {
|
|
639
|
-
static AddCircuitOptions(builder: IServerSideBlazorBuilder, configure:
|
|
640
|
-
static AddHubOptions(builder: IServerSideBlazorBuilder, configure:
|
|
651
|
+
static AddCircuitOptions(builder: IServerSideBlazorBuilder, configure: Action_1<CircuitOptions>): IServerSideBlazorBuilder;
|
|
652
|
+
static AddHubOptions(builder: IServerSideBlazorBuilder, configure: Action_1<HubOptions>): IServerSideBlazorBuilder;
|
|
641
653
|
}
|
|
642
654
|
|
|
643
655
|
|
|
644
656
|
export type ServerSideBlazorBuilderExtensions = ServerSideBlazorBuilderExtensions$instance;
|
|
645
657
|
|
|
646
658
|
export abstract class SessionServiceCollectionExtensions$instance {
|
|
647
|
-
static AddSession(services: IServiceCollection, configure:
|
|
659
|
+
static AddSession(services: IServiceCollection, configure: Action_1<SessionOptions>): IServiceCollection;
|
|
648
660
|
static AddSession(services: IServiceCollection): IServiceCollection;
|
|
649
661
|
}
|
|
650
662
|
|
|
@@ -652,8 +664,8 @@ export abstract class SessionServiceCollectionExtensions$instance {
|
|
|
652
664
|
export type SessionServiceCollectionExtensions = SessionServiceCollectionExtensions$instance;
|
|
653
665
|
|
|
654
666
|
export abstract class SignalRDependencyInjectionExtensions$instance {
|
|
655
|
-
static AddHubOptions<THub extends Hub>(signalrBuilder: ISignalRServerBuilder, configure:
|
|
656
|
-
static AddSignalR(services: IServiceCollection, configure:
|
|
667
|
+
static AddHubOptions<THub extends Hub>(signalrBuilder: ISignalRServerBuilder, configure: Action_1<HubOptions_1<THub>>): ISignalRServerBuilder;
|
|
668
|
+
static AddSignalR(services: IServiceCollection, configure: Action_1<HubOptions>): ISignalRServerBuilder;
|
|
657
669
|
static AddSignalR(services: IServiceCollection): ISignalRServerBuilder;
|
|
658
670
|
}
|
|
659
671
|
|
|
@@ -669,8 +681,8 @@ export type SignalRDependencyInjectionExtensions2 = SignalRDependencyInjectionEx
|
|
|
669
681
|
|
|
670
682
|
export abstract class TagHelperServicesExtensions$instance {
|
|
671
683
|
static AddCacheTagHelper(builder: IMvcCoreBuilder): IMvcCoreBuilder;
|
|
672
|
-
static AddCacheTagHelperLimits(builder: IMvcBuilder, configure:
|
|
673
|
-
static AddCacheTagHelperLimits(builder: IMvcCoreBuilder, configure:
|
|
684
|
+
static AddCacheTagHelperLimits(builder: IMvcBuilder, configure: Action_1<CacheTagHelperOptions>): IMvcBuilder;
|
|
685
|
+
static AddCacheTagHelperLimits(builder: IMvcCoreBuilder, configure: Action_1<CacheTagHelperOptions>): IMvcCoreBuilder;
|
|
674
686
|
}
|
|
675
687
|
|
|
676
688
|
|