@tsonic/aspnetcore 10.0.33 → 10.0.35
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/__internal/extensions/index.d.ts +1423 -1788
- package/package.json +4 -4
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
// Generated by tsbindgen - Extension Method
|
|
2
|
-
// This file contains
|
|
3
|
-
//
|
|
1
|
+
// Generated by tsbindgen - Extension Method Tables
|
|
2
|
+
// This file contains method-table interfaces for C# extension methods.
|
|
3
|
+
// Tables are scoped by declaring namespace (C# using semantics).
|
|
4
4
|
// For each namespace with extension methods, this file exports an ExtensionMethods_<Namespace> helper.
|
|
5
5
|
|
|
6
6
|
// Import namespace modules for cross-namespace type references
|
|
@@ -123,2189 +123,1824 @@ import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
|
123
123
|
// Import unsafe type markers
|
|
124
124
|
import type { ptr } from '@tsonic/core/types.js';
|
|
125
125
|
|
|
126
|
-
export interface __Ext_Microsoft_AspNetCore_Authentication_AuthenticationProperties {
|
|
127
|
-
StoreTokens(tokens: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Authentication.AuthenticationToken>): Rewrap<this, void>;
|
|
128
|
-
GetTokenValue(tokenName: string): Rewrap<this, string | undefined>;
|
|
129
|
-
UpdateTokenValue(tokenName: string, tokenValue: string): Rewrap<this, boolean>;
|
|
130
|
-
GetTokens(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Authentication.AuthenticationToken>>;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
export interface __Ext_Microsoft_AspNetCore_Authentication_IAuthenticationConfigurationProvider {
|
|
134
|
-
GetSchemeConfiguration(authenticationScheme: string): Rewrap<this, Microsoft_Extensions_Configuration.IConfiguration>;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
export interface __Ext_Microsoft_AspNetCore_Authentication_IAuthenticationService {
|
|
138
|
-
GetTokenAsync(context: Microsoft_AspNetCore_Http.HttpContext, tokenName: string): Rewrap<this, System_Threading_Tasks.Task_1<string | undefined>>;
|
|
139
|
-
GetTokenAsync(context: Microsoft_AspNetCore_Http.HttpContext, scheme: string, tokenName: string): Rewrap<this, System_Threading_Tasks.Task_1<string | undefined>>;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
export interface __Ext_Microsoft_AspNetCore_Authentication_ClaimActionCollection {
|
|
143
|
-
MapJsonKey(claimType: string, jsonKey: string): Rewrap<this, void>;
|
|
144
|
-
MapJsonKey(claimType: string, jsonKey: string, valueType: string): Rewrap<this, void>;
|
|
145
|
-
MapJsonSubKey(claimType: string, jsonKey: string, subKey: string): Rewrap<this, void>;
|
|
146
|
-
MapJsonSubKey(claimType: string, jsonKey: string, subKey: string, valueType: string): Rewrap<this, void>;
|
|
147
|
-
MapCustomJson(claimType: string, resolver: System.Func_2<System_Text_Json.JsonElement, System_Internal.String>): Rewrap<this, void>;
|
|
148
|
-
MapCustomJson(claimType: string, valueType: string, resolver: System.Func_2<System_Text_Json.JsonElement, System_Internal.String>): Rewrap<this, void>;
|
|
149
|
-
MapAll(): Rewrap<this, void>;
|
|
150
|
-
MapAllExcept(...exclusions: string[]): Rewrap<this, void>;
|
|
151
|
-
DeleteClaim(claimType: string): Rewrap<this, void>;
|
|
152
|
-
DeleteClaims(...claimTypes: string[]): Rewrap<this, void>;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
export interface __Ext_Microsoft_AspNetCore_Authentication_HttpContext {
|
|
156
|
-
AuthenticateAsync(): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Authentication.AuthenticateResult>>;
|
|
157
|
-
AuthenticateAsync(scheme: string): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Authentication.AuthenticateResult>>;
|
|
158
|
-
ChallengeAsync(scheme: string): Rewrap<this, System_Threading_Tasks.Task>;
|
|
159
|
-
ChallengeAsync(): Rewrap<this, System_Threading_Tasks.Task>;
|
|
160
|
-
ChallengeAsync(properties: Microsoft_AspNetCore_Authentication.AuthenticationProperties): Rewrap<this, System_Threading_Tasks.Task>;
|
|
161
|
-
ChallengeAsync(scheme: string, properties: Microsoft_AspNetCore_Authentication.AuthenticationProperties): Rewrap<this, System_Threading_Tasks.Task>;
|
|
162
|
-
ForbidAsync(scheme: string): Rewrap<this, System_Threading_Tasks.Task>;
|
|
163
|
-
ForbidAsync(): Rewrap<this, System_Threading_Tasks.Task>;
|
|
164
|
-
ForbidAsync(properties: Microsoft_AspNetCore_Authentication.AuthenticationProperties): Rewrap<this, System_Threading_Tasks.Task>;
|
|
165
|
-
ForbidAsync(scheme: string, properties: Microsoft_AspNetCore_Authentication.AuthenticationProperties): Rewrap<this, System_Threading_Tasks.Task>;
|
|
166
|
-
SignInAsync(scheme: string, principal: System_Security_Claims.ClaimsPrincipal): Rewrap<this, System_Threading_Tasks.Task>;
|
|
167
|
-
SignInAsync(principal: System_Security_Claims.ClaimsPrincipal): Rewrap<this, System_Threading_Tasks.Task>;
|
|
168
|
-
SignInAsync(principal: System_Security_Claims.ClaimsPrincipal, properties: Microsoft_AspNetCore_Authentication.AuthenticationProperties): Rewrap<this, System_Threading_Tasks.Task>;
|
|
169
|
-
SignInAsync(scheme: string, principal: System_Security_Claims.ClaimsPrincipal, properties: Microsoft_AspNetCore_Authentication.AuthenticationProperties): Rewrap<this, System_Threading_Tasks.Task>;
|
|
170
|
-
SignOutAsync(): Rewrap<this, System_Threading_Tasks.Task>;
|
|
171
|
-
SignOutAsync(properties: Microsoft_AspNetCore_Authentication.AuthenticationProperties): Rewrap<this, System_Threading_Tasks.Task>;
|
|
172
|
-
SignOutAsync(scheme: string): Rewrap<this, System_Threading_Tasks.Task>;
|
|
173
|
-
SignOutAsync(scheme: string, properties: Microsoft_AspNetCore_Authentication.AuthenticationProperties): Rewrap<this, System_Threading_Tasks.Task>;
|
|
174
|
-
GetTokenAsync(scheme: string, tokenName: string): Rewrap<this, System_Threading_Tasks.Task_1<string | undefined>>;
|
|
175
|
-
GetTokenAsync(tokenName: string): Rewrap<this, System_Threading_Tasks.Task_1<string | undefined>>;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
export interface __Ext_Microsoft_AspNetCore_Authentication_JsonElement {
|
|
179
|
-
GetString(key: string): Rewrap<this, string | undefined>;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
export interface __Ext_Microsoft_AspNetCore_Authorization_IAuthorizationService {
|
|
183
|
-
AuthorizeAsync(user: System_Security_Claims.ClaimsPrincipal, resource: unknown, requirement: Microsoft_AspNetCore_Authorization.IAuthorizationRequirement): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Authorization.AuthorizationResult>>;
|
|
184
|
-
AuthorizeAsync(user: System_Security_Claims.ClaimsPrincipal, resource: unknown, policy: Microsoft_AspNetCore_Authorization.AuthorizationPolicy): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Authorization.AuthorizationResult>>;
|
|
185
|
-
AuthorizeAsync(user: System_Security_Claims.ClaimsPrincipal, policy: Microsoft_AspNetCore_Authorization.AuthorizationPolicy): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Authorization.AuthorizationResult>>;
|
|
186
|
-
AuthorizeAsync(user: System_Security_Claims.ClaimsPrincipal, policyName: string): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Authorization.AuthorizationResult>>;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
export interface __Ext_Microsoft_AspNetCore_Builder_ControllerActionEndpointConventionBuilder {
|
|
190
|
-
WithStaticAssets(manifestPath?: string): Rewrap<this, Microsoft_AspNetCore_Builder.ControllerActionEndpointConventionBuilder>;
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
export interface __Ext_Microsoft_AspNetCore_Builder_IApplicationBuilder {
|
|
194
|
-
UseAntiforgery(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
195
|
-
UseAuthentication(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
196
|
-
UseAuthorization(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
197
|
-
UseCookiePolicy(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
198
|
-
UseCookiePolicy(options: Microsoft_AspNetCore_Builder.CookiePolicyOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
199
|
-
UseCors(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
200
|
-
UseCors(policyName: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
201
|
-
UseCors(configurePolicy: System.Action_1<Microsoft_AspNetCore_Cors_Infrastructure.CorsPolicyBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
202
|
-
UseDeveloperExceptionPage(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
203
|
-
UseDeveloperExceptionPage(options: Microsoft_AspNetCore_Builder.DeveloperExceptionPageOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
204
|
-
UseExceptionHandler(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
205
|
-
UseExceptionHandler(errorHandlingPath: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
206
|
-
UseExceptionHandler(errorHandlingPath: string, createScopeForErrors: boolean): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
207
|
-
UseExceptionHandler(configure: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
208
|
-
UseExceptionHandler(options: Microsoft_AspNetCore_Builder.ExceptionHandlerOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
209
|
-
UseStatusCodePages(options: Microsoft_AspNetCore_Builder.StatusCodePagesOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
210
|
-
UseStatusCodePages(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
211
|
-
UseStatusCodePages(handler: System.Func_2<Microsoft_AspNetCore_Diagnostics.StatusCodeContext, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
212
|
-
UseStatusCodePages(contentType: string, bodyFormat: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
213
|
-
UseStatusCodePagesWithRedirects(locationFormat: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
214
|
-
UseStatusCodePages(configuration: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
215
|
-
UseStatusCodePagesWithReExecute(pathFormat: string, queryFormat: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
216
|
-
UseStatusCodePagesWithReExecute(pathFormat: string, queryFormat?: string, createScopeForStatusCodePages?: boolean): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
217
|
-
UseWelcomePage(options: Microsoft_AspNetCore_Builder.WelcomePageOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
218
|
-
UseWelcomePage(path: Microsoft_AspNetCore_Http.PathString): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
219
|
-
UseWelcomePage(path: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
220
|
-
UseWelcomePage(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
221
|
-
UseHealthChecks(path: Microsoft_AspNetCore_Http.PathString): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
222
|
-
UseHealthChecks(path: Microsoft_AspNetCore_Http.PathString, options: Microsoft_AspNetCore_Diagnostics_HealthChecks.HealthCheckOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
223
|
-
UseHealthChecks(path: Microsoft_AspNetCore_Http.PathString, port: int): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
224
|
-
UseHealthChecks(path: Microsoft_AspNetCore_Http.PathString, port: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
225
|
-
UseHealthChecks(path: Microsoft_AspNetCore_Http.PathString, port: int, options: Microsoft_AspNetCore_Diagnostics_HealthChecks.HealthCheckOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
226
|
-
UseHealthChecks(path: Microsoft_AspNetCore_Http.PathString, port: string, options: Microsoft_AspNetCore_Diagnostics_HealthChecks.HealthCheckOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
227
|
-
UseHostFiltering(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
228
|
-
UseRequestTimeouts(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
229
|
-
Map(pathMatch: string, configuration: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
230
|
-
Map(pathMatch: Microsoft_AspNetCore_Http.PathString, configuration: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
231
|
-
Map(pathMatch: Microsoft_AspNetCore_Http.PathString, preserveMatchedPathSegment: boolean, configuration: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
232
|
-
MapWhen(predicate: System.Func_2<Microsoft_AspNetCore_Http.HttpContext, System_Internal.Boolean>, configuration: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
233
|
-
Run(handler: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, void>;
|
|
234
|
-
Use(middleware: System.Func_3<Microsoft_AspNetCore_Http.HttpContext, System.Func_1<System_Threading_Tasks.Task>, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
235
|
-
Use(middleware: System.Func_3<Microsoft_AspNetCore_Http.HttpContext, Microsoft_AspNetCore_Http.RequestDelegate, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
236
|
-
UseMiddleware<TMiddleware>(...args: unknown[]): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
237
|
-
UseMiddleware(middleware: System.Type, ...args: unknown[]): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
238
|
-
UsePathBase(pathBase: Microsoft_AspNetCore_Http.PathString): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
239
|
-
UseWhen(predicate: System.Func_2<Microsoft_AspNetCore_Http.HttpContext, System_Internal.Boolean>, configuration: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
240
|
-
UseHttpLogging(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
241
|
-
UseW3CLogging(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
242
|
-
UseCertificateForwarding(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
243
|
-
UseForwardedHeaders(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
244
|
-
UseForwardedHeaders(options: Microsoft_AspNetCore_Builder.ForwardedHeadersOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
245
|
-
UseHttpMethodOverride(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
246
|
-
UseHttpMethodOverride(options: Microsoft_AspNetCore_Builder.HttpMethodOverrideOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
247
|
-
UseHsts(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
248
|
-
UseHttpsRedirection(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
249
|
-
UseRequestLocalization(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
250
|
-
UseRequestLocalization(options: Microsoft_AspNetCore_Builder.RequestLocalizationOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
251
|
-
UseRequestLocalization(optionsAction: System.Action_1<Microsoft_AspNetCore_Builder.RequestLocalizationOptions>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
252
|
-
UseRequestLocalization(...cultures: string[]): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
253
|
-
UseMvc(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
254
|
-
UseMvcWithDefaultRoute(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
255
|
-
UseMvc(configureRoutes: System.Action_1<Microsoft_AspNetCore_Routing.IRouteBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
256
|
-
UseOutputCache(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
257
|
-
UseRateLimiter(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
258
|
-
UseRateLimiter(options: Microsoft_AspNetCore_RateLimiting.RateLimiterOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
259
|
-
UseRequestDecompression(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
260
|
-
UseResponseCaching(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
261
|
-
UseResponseCompression(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
262
|
-
UseRewriter(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
263
|
-
UseRewriter(options: Microsoft_AspNetCore_Rewrite.RewriteOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
264
|
-
UseRouting(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
265
|
-
UseEndpoints(configure: System.Action_1<Microsoft_AspNetCore_Routing.IEndpointRouteBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
266
|
-
UseRouter(router: Microsoft_AspNetCore_Routing.IRouter): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
267
|
-
UseRouter(action: System.Action_1<Microsoft_AspNetCore_Routing.IRouteBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
268
|
-
UseSession(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
269
|
-
UseSession(options: Microsoft_AspNetCore_Builder.SessionOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
270
|
-
UseDefaultFiles(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
271
|
-
UseDefaultFiles(requestPath: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
272
|
-
UseDefaultFiles(options: Microsoft_AspNetCore_Builder.DefaultFilesOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
273
|
-
UseDirectoryBrowser(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
274
|
-
UseDirectoryBrowser(requestPath: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
275
|
-
UseDirectoryBrowser(options: Microsoft_AspNetCore_Builder.DirectoryBrowserOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
276
|
-
UseFileServer(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
277
|
-
UseFileServer(enableDirectoryBrowsing: boolean): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
278
|
-
UseFileServer(requestPath: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
279
|
-
UseFileServer(options: Microsoft_AspNetCore_Builder.FileServerOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
280
|
-
UseStaticFiles(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
281
|
-
UseStaticFiles(requestPath: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
282
|
-
UseStaticFiles(options: Microsoft_AspNetCore_Builder.StaticFileOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
283
|
-
UseWebSockets(): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
284
|
-
UseWebSockets(options: Microsoft_AspNetCore_Builder.WebSocketOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
export interface __Ext_Microsoft_AspNetCore_Builder_IEndpointConventionBuilder {
|
|
288
|
-
WithRequestTimeout(timeout: System.TimeSpan): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
289
|
-
WithRequestTimeout(policyName: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
290
|
-
WithRequestTimeout(policy: Microsoft_AspNetCore_Http_Timeouts.RequestTimeoutPolicy): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
291
|
-
DisableRequestTimeout(): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
292
|
-
ShortCircuit(statusCode?: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
export interface __Ext_Microsoft_AspNetCore_Builder_PageActionEndpointConventionBuilder {
|
|
296
|
-
WithStaticAssets(manifestPath?: string): Rewrap<this, Microsoft_AspNetCore_Builder.PageActionEndpointConventionBuilder>;
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
export interface __Ext_Microsoft_AspNetCore_Builder_RazorComponentsEndpointConventionBuilder {
|
|
300
|
-
AddAdditionalAssemblies(...assemblies: System_Reflection.Assembly[]): Rewrap<this, Microsoft_AspNetCore_Builder.RazorComponentsEndpointConventionBuilder>;
|
|
301
|
-
WithStaticAssets(manifestPath?: string): Rewrap<this, Microsoft_AspNetCore_Builder.RazorComponentsEndpointConventionBuilder>;
|
|
302
|
-
AddInteractiveServerRenderMode(): Rewrap<this, Microsoft_AspNetCore_Builder.RazorComponentsEndpointConventionBuilder>;
|
|
303
|
-
AddInteractiveServerRenderMode(configure: System.Action_1<Microsoft_AspNetCore_Components_Server.ServerComponentsEndpointOptions>): Rewrap<this, Microsoft_AspNetCore_Builder.RazorComponentsEndpointConventionBuilder>;
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
export interface __Ext_Microsoft_AspNetCore_Builder_RequestLocalizationOptions {
|
|
307
|
-
AddInitialRequestCultureProvider(requestCultureProvider: Microsoft_AspNetCore_Localization.RequestCultureProvider): Rewrap<this, Microsoft_AspNetCore_Builder.RequestLocalizationOptions>;
|
|
308
|
-
}
|
|
309
|
-
|
|
310
|
-
export interface __Ext_Microsoft_AspNetCore_Builder_IEndpointRouteBuilder {
|
|
311
|
-
MapRazorComponents<TRootComponent>(): Rewrap<this, Microsoft_AspNetCore_Builder.RazorComponentsEndpointConventionBuilder>;
|
|
312
|
-
MapBlazorHub(): Rewrap<this, Microsoft_AspNetCore_Builder.ComponentEndpointConventionBuilder>;
|
|
313
|
-
MapBlazorHub(path: string): Rewrap<this, Microsoft_AspNetCore_Builder.ComponentEndpointConventionBuilder>;
|
|
314
|
-
MapBlazorHub(configureOptions: System.Action_1<Microsoft_AspNetCore_Http_Connections.HttpConnectionDispatcherOptions>): Rewrap<this, Microsoft_AspNetCore_Builder.ComponentEndpointConventionBuilder>;
|
|
315
|
-
MapBlazorHub(path: string, configureOptions: System.Action_1<Microsoft_AspNetCore_Http_Connections.HttpConnectionDispatcherOptions>): Rewrap<this, Microsoft_AspNetCore_Builder.ComponentEndpointConventionBuilder>;
|
|
316
|
-
MapHealthChecks(pattern: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
317
|
-
MapHealthChecks(pattern: string, options: Microsoft_AspNetCore_Diagnostics_HealthChecks.HealthCheckOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
318
|
-
MapConnections(pattern: string, configure: System.Action_1<Microsoft_AspNetCore_Connections.IConnectionBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.ConnectionEndpointRouteBuilder>;
|
|
319
|
-
MapConnectionHandler<TConnectionHandler>(pattern: string): Rewrap<this, Microsoft_AspNetCore_Builder.ConnectionEndpointRouteBuilder>;
|
|
320
|
-
MapConnectionHandler<TConnectionHandler>(pattern: string, configureOptions: System.Action_1<Microsoft_AspNetCore_Http_Connections.HttpConnectionDispatcherOptions>): Rewrap<this, Microsoft_AspNetCore_Builder.ConnectionEndpointRouteBuilder>;
|
|
321
|
-
MapConnections(pattern: string, options: Microsoft_AspNetCore_Http_Connections.HttpConnectionDispatcherOptions, configure: System.Action_1<Microsoft_AspNetCore_Connections.IConnectionBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.ConnectionEndpointRouteBuilder>;
|
|
322
|
-
MapControllers(): Rewrap<this, Microsoft_AspNetCore_Builder.ControllerActionEndpointConventionBuilder>;
|
|
323
|
-
MapDefaultControllerRoute(): Rewrap<this, Microsoft_AspNetCore_Builder.ControllerActionEndpointConventionBuilder>;
|
|
324
|
-
MapControllerRoute(name: string, pattern: string, defaults?: unknown, constraints?: unknown, dataTokens?: unknown): Rewrap<this, Microsoft_AspNetCore_Builder.ControllerActionEndpointConventionBuilder>;
|
|
325
|
-
MapAreaControllerRoute(name: string, areaName: string, pattern: string, defaults?: unknown, constraints?: unknown, dataTokens?: unknown): Rewrap<this, Microsoft_AspNetCore_Builder.ControllerActionEndpointConventionBuilder>;
|
|
326
|
-
MapFallbackToController(action: string, controller: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
327
|
-
MapFallbackToController(pattern: string, action: string, controller: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
328
|
-
MapFallbackToAreaController(action: string, controller: string, area: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
329
|
-
MapFallbackToAreaController(pattern: string, action: string, controller: string, area: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
330
|
-
MapDynamicControllerRoute<TTransformer>(pattern: string): Rewrap<this, void>;
|
|
331
|
-
MapDynamicControllerRoute<TTransformer>(pattern: string, state: unknown): Rewrap<this, void>;
|
|
332
|
-
MapDynamicControllerRoute<TTransformer>(pattern: string, state: unknown, order: int): Rewrap<this, void>;
|
|
333
|
-
MapRazorPages(): Rewrap<this, Microsoft_AspNetCore_Builder.PageActionEndpointConventionBuilder>;
|
|
334
|
-
MapFallbackToPage(page: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
335
|
-
MapFallbackToPage(pattern: string, page: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
336
|
-
MapFallbackToAreaPage(page: string, area: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
337
|
-
MapFallbackToAreaPage(pattern: string, page: string, area: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
338
|
-
MapDynamicPageRoute<TTransformer>(pattern: string): Rewrap<this, void>;
|
|
339
|
-
MapDynamicPageRoute<TTransformer>(pattern: string, state: unknown): Rewrap<this, void>;
|
|
340
|
-
MapDynamicPageRoute<TTransformer>(pattern: string, state: unknown, order: int): Rewrap<this, void>;
|
|
341
|
-
MapGroup(prefix: string): Rewrap<this, Microsoft_AspNetCore_Routing.RouteGroupBuilder>;
|
|
342
|
-
MapGroup(prefix: Microsoft_AspNetCore_Routing_Patterns.RoutePattern): Rewrap<this, Microsoft_AspNetCore_Routing.RouteGroupBuilder>;
|
|
343
|
-
MapGet(pattern: string, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
344
|
-
MapPost(pattern: string, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
345
|
-
MapPut(pattern: string, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
346
|
-
MapDelete(pattern: string, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
347
|
-
MapPatch(pattern: string, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
348
|
-
MapMethods(pattern: string, httpMethods: System_Collections_Generic.IEnumerable_1<System_Internal.String>, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
349
|
-
Map(pattern: string, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
350
|
-
Map(pattern: Microsoft_AspNetCore_Routing_Patterns.RoutePattern, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
351
|
-
MapGet(pattern: string, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
352
|
-
MapPost(pattern: string, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
353
|
-
MapPut(pattern: string, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
354
|
-
MapDelete(pattern: string, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
355
|
-
MapPatch(pattern: string, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
356
|
-
MapMethods(pattern: string, httpMethods: System_Collections_Generic.IEnumerable_1<System_Internal.String>, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
357
|
-
Map(pattern: string, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
358
|
-
Map(pattern: Microsoft_AspNetCore_Routing_Patterns.RoutePattern, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
359
|
-
MapFallback(handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
360
|
-
MapFallback(pattern: string, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
361
|
-
MapFallback(requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
362
|
-
MapFallback(pattern: string, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
363
|
-
MapHub<THub>(pattern: string): Rewrap<this, Microsoft_AspNetCore_Builder.HubEndpointConventionBuilder>;
|
|
364
|
-
MapHub<THub>(pattern: string, configureOptions: System.Action_1<Microsoft_AspNetCore_Http_Connections.HttpConnectionDispatcherOptions>): Rewrap<this, Microsoft_AspNetCore_Builder.HubEndpointConventionBuilder>;
|
|
365
|
-
MapStaticAssets(staticAssetsManifestPath?: string): Rewrap<this, Microsoft_AspNetCore_StaticAssets.StaticAssetsEndpointConventionBuilder>;
|
|
366
|
-
MapFallbackToFile(filePath: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
367
|
-
MapFallbackToFile(filePath: string, options: Microsoft_AspNetCore_Builder.StaticFileOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
368
|
-
MapFallbackToFile(pattern: string, filePath: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
369
|
-
MapFallbackToFile(pattern: string, filePath: string, options: Microsoft_AspNetCore_Builder.StaticFileOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
export interface __Ext_Microsoft_AspNetCore_Builder_IRouteBuilder {
|
|
373
|
-
MapAreaRoute(name: string, areaName: string, template: string): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
374
|
-
MapAreaRoute(name: string, areaName: string, template: string, defaults: unknown): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
375
|
-
MapAreaRoute(name: string, areaName: string, template: string, defaults: unknown, constraints: unknown): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
376
|
-
MapAreaRoute(name: string, areaName: string, template: string, defaults: unknown, constraints: unknown, dataTokens: unknown): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
377
|
-
MapRoute(name: string, template: string): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
378
|
-
MapRoute(name: string, template: string, defaults: unknown): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
379
|
-
MapRoute(name: string, template: string, defaults: unknown, constraints: unknown): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
380
|
-
MapRoute(name: string, template: string, defaults: unknown, constraints: unknown, dataTokens: unknown): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
export interface __Ext_Microsoft_AspNetCore_Builder_IServiceCollection {
|
|
384
|
-
AddHostFiltering(configureOptions: System.Action_1<Microsoft_AspNetCore_HostFiltering.HostFilteringOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
385
|
-
AddHsts(configureOptions: System.Action_1<Microsoft_AspNetCore_HttpsPolicy.HstsOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
386
|
-
AddHttpsRedirection(configureOptions: System.Action_1<Microsoft_AspNetCore_HttpsPolicy.HttpsRedirectionOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
387
|
-
AddRateLimiter(configureOptions: System.Action_1<Microsoft_AspNetCore_RateLimiting.RateLimiterOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
388
|
-
AddRateLimiter(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
389
|
-
AddResponseCompression(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
390
|
-
AddResponseCompression(configureOptions: System.Action_1<Microsoft_AspNetCore_ResponseCompression.ResponseCompressionOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
export interface __Ext_Microsoft_AspNetCore_Components_ElementReference {
|
|
394
|
-
FocusAsync(): Rewrap<this, System_Threading_Tasks.ValueTask>;
|
|
395
|
-
FocusAsync(preventScroll: boolean): Rewrap<this, System_Threading_Tasks.ValueTask>;
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
export interface __Ext_Microsoft_AspNetCore_Components_EventCallbackFactory {
|
|
399
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System_Internal.String>, existingValue: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
400
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System_Internal.String, System_Threading_Tasks.Task>, existingValue: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
401
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System_Internal.Boolean>, existingValue: boolean, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
402
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System_Internal.Boolean, System_Threading_Tasks.Task>, existingValue: boolean, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
403
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.Nullable_1<System_Internal.Boolean>>, existingValue: System.Nullable_1<System_Internal.Boolean>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
404
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.Nullable_1<System_Internal.Boolean>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System_Internal.Boolean>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
405
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System_Internal.Int32>, existingValue: int, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
406
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System_Internal.Int32, System_Threading_Tasks.Task>, existingValue: int, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
407
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.Nullable_1<System_Internal.Int32>>, existingValue: System.Nullable_1<System_Internal.Int32>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
408
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.Nullable_1<System_Internal.Int32>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System_Internal.Int32>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
409
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System_Internal.Int64>, existingValue: long, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
410
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System_Internal.Int64, System_Threading_Tasks.Task>, existingValue: long, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
411
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System_Internal.Int16>, existingValue: short, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
412
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System_Internal.Int16, System_Threading_Tasks.Task>, existingValue: short, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
413
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.Nullable_1<System_Internal.Int64>>, existingValue: System.Nullable_1<System_Internal.Int64>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
414
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.Nullable_1<System_Internal.Int64>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System_Internal.Int64>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
415
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.Nullable_1<System_Internal.Int16>>, existingValue: System.Nullable_1<System_Internal.Int16>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
416
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.Nullable_1<System_Internal.Int16>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System_Internal.Int16>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
417
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System_Internal.Single>, existingValue: float, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
418
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System_Internal.Single, System_Threading_Tasks.Task>, existingValue: float, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
419
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.Nullable_1<System_Internal.Single>>, existingValue: System.Nullable_1<System_Internal.Single>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
420
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.Nullable_1<System_Internal.Single>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System_Internal.Single>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
421
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System_Internal.Double>, existingValue: double, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
422
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System_Internal.Double, System_Threading_Tasks.Task>, existingValue: double, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
423
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.Nullable_1<System_Internal.Double>>, existingValue: System.Nullable_1<System_Internal.Double>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
424
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.Nullable_1<System_Internal.Double>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System_Internal.Double>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
425
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System_Internal.Decimal>, existingValue: decimal, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
426
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System_Internal.Decimal, System_Threading_Tasks.Task>, existingValue: decimal, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
427
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.Nullable_1<System_Internal.Decimal>>, existingValue: System.Nullable_1<System_Internal.Decimal>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
428
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.Nullable_1<System_Internal.Decimal>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System_Internal.Decimal>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
429
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.DateTime>, existingValue: System.DateTime, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
430
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.DateTime, System_Threading_Tasks.Task>, existingValue: System.DateTime, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
431
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.DateTime>, existingValue: System.DateTime, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
432
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.DateTime, System_Threading_Tasks.Task>, existingValue: System.DateTime, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
433
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.Nullable_1<System.DateTime>>, existingValue: System.Nullable_1<System.DateTime>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
434
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.Nullable_1<System.DateTime>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System.DateTime>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
435
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.Nullable_1<System.DateTime>>, existingValue: System.Nullable_1<System.DateTime>, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
436
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.Nullable_1<System.DateTime>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System.DateTime>, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
437
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.DateTimeOffset>, existingValue: System.DateTimeOffset, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
438
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.DateTimeOffset, System_Threading_Tasks.Task>, existingValue: System.DateTimeOffset, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
439
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.DateTimeOffset>, existingValue: System.DateTimeOffset, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
440
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.DateTimeOffset, System_Threading_Tasks.Task>, existingValue: System.DateTimeOffset, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
441
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.Nullable_1<System.DateTimeOffset>>, existingValue: System.Nullable_1<System.DateTimeOffset>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
442
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.Nullable_1<System.DateTimeOffset>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System.DateTimeOffset>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
443
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.Nullable_1<System.DateTimeOffset>>, existingValue: System.Nullable_1<System.DateTimeOffset>, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
444
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.Nullable_1<System.DateTimeOffset>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System.DateTimeOffset>, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
445
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.DateOnly>, existingValue: System.DateOnly, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
446
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.DateOnly, System_Threading_Tasks.Task>, existingValue: System.DateOnly, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
447
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.DateOnly>, existingValue: System.DateOnly, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
448
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.DateOnly, System_Threading_Tasks.Task>, existingValue: System.DateOnly, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
449
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.Nullable_1<System.DateOnly>>, existingValue: System.Nullable_1<System.DateOnly>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
450
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.Nullable_1<System.DateOnly>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System.DateOnly>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
451
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.Nullable_1<System.DateOnly>>, existingValue: System.Nullable_1<System.DateOnly>, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
452
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.Nullable_1<System.DateOnly>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System.DateOnly>, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
453
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.TimeOnly>, existingValue: System.TimeOnly, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
454
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.TimeOnly, System_Threading_Tasks.Task>, existingValue: System.TimeOnly, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
455
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.TimeOnly>, existingValue: System.TimeOnly, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
456
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.TimeOnly, System_Threading_Tasks.Task>, existingValue: System.TimeOnly, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
457
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.Nullable_1<System.TimeOnly>>, existingValue: System.Nullable_1<System.TimeOnly>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
458
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.Nullable_1<System.TimeOnly>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System.TimeOnly>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
459
|
-
CreateBinder(receiver: unknown, setter: System.Action_1<System.Nullable_1<System.TimeOnly>>, existingValue: System.Nullable_1<System.TimeOnly>, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
460
|
-
CreateBinder(receiver: unknown, setter: System.Func_2<System.Nullable_1<System.TimeOnly>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System.TimeOnly>, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
461
|
-
CreateBinder<T>(receiver: unknown, setter: System.Action_1<T>, existingValue: T, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
462
|
-
CreateBinder<T>(receiver: unknown, setter: System.Func_2<T, System_Threading_Tasks.Task>, existingValue: T, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
463
|
-
Create(receiver: unknown, callback: System.Action_1<System.EventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<System.EventArgs>>;
|
|
464
|
-
Create(receiver: unknown, callback: System.Func_2<System.EventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<System.EventArgs>>;
|
|
465
|
-
Create(receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components.ChangeEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
466
|
-
Create(receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components.ChangeEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
export interface __Ext_Microsoft_AspNetCore_Components_NavigationManager {
|
|
470
|
-
GetUriWithQueryParameter(name: string, value: boolean): Rewrap<this, string>;
|
|
471
|
-
GetUriWithQueryParameter(name: string, value: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, string>;
|
|
472
|
-
GetUriWithQueryParameter(name: string, value: System.DateTime): Rewrap<this, string>;
|
|
473
|
-
GetUriWithQueryParameter(name: string, value: System.Nullable_1<System.DateTime>): Rewrap<this, string>;
|
|
474
|
-
GetUriWithQueryParameter(name: string, value: System.DateOnly): Rewrap<this, string>;
|
|
475
|
-
GetUriWithQueryParameter(name: string, value: System.Nullable_1<System.DateOnly>): Rewrap<this, string>;
|
|
476
|
-
GetUriWithQueryParameter(name: string, value: System.TimeOnly): Rewrap<this, string>;
|
|
477
|
-
GetUriWithQueryParameter(name: string, value: System.Nullable_1<System.TimeOnly>): Rewrap<this, string>;
|
|
478
|
-
GetUriWithQueryParameter(name: string, value: decimal): Rewrap<this, string>;
|
|
479
|
-
GetUriWithQueryParameter(name: string, value: System.Nullable_1<System_Internal.Decimal>): Rewrap<this, string>;
|
|
480
|
-
GetUriWithQueryParameter(name: string, value: double): Rewrap<this, string>;
|
|
481
|
-
GetUriWithQueryParameter(name: string, value: System.Nullable_1<System_Internal.Double>): Rewrap<this, string>;
|
|
482
|
-
GetUriWithQueryParameter(name: string, value: float): Rewrap<this, string>;
|
|
483
|
-
GetUriWithQueryParameter(name: string, value: System.Nullable_1<System_Internal.Single>): Rewrap<this, string>;
|
|
484
|
-
GetUriWithQueryParameter(name: string, value: System.Guid): Rewrap<this, string>;
|
|
485
|
-
GetUriWithQueryParameter(name: string, value: System.Nullable_1<System.Guid>): Rewrap<this, string>;
|
|
486
|
-
GetUriWithQueryParameter(name: string, value: int): Rewrap<this, string>;
|
|
487
|
-
GetUriWithQueryParameter(name: string, value: System.Nullable_1<System_Internal.Int32>): Rewrap<this, string>;
|
|
488
|
-
GetUriWithQueryParameter(name: string, value: long): Rewrap<this, string>;
|
|
489
|
-
GetUriWithQueryParameter(name: string, value: System.Nullable_1<System_Internal.Int64>): Rewrap<this, string>;
|
|
490
|
-
GetUriWithQueryParameter(name: string, value: string): Rewrap<this, string>;
|
|
491
|
-
GetUriWithQueryParameters(parameters: System_Collections_Generic.IReadOnlyDictionary_2<System_Internal.String, unknown>): Rewrap<this, string>;
|
|
492
|
-
GetUriWithQueryParameters(uri: string, parameters: System_Collections_Generic.IReadOnlyDictionary_2<System_Internal.String, unknown>): Rewrap<this, string>;
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
export interface __Ext_Microsoft_AspNetCore_Components_IServiceCollection {
|
|
496
|
-
AddSupplyValueFromQueryProvider(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
497
|
-
}
|
|
498
|
-
|
|
499
|
-
export interface __Ext_Microsoft_AspNetCore_Components_Forms_EditContext {
|
|
500
|
-
AddDataAnnotationsValidation(): Rewrap<this, Microsoft_AspNetCore_Components_Forms.EditContext>;
|
|
501
|
-
EnableDataAnnotationsValidation(): Rewrap<this, System.IDisposable>;
|
|
502
|
-
EnableDataAnnotationsValidation(serviceProvider: System.IServiceProvider): Rewrap<this, System.IDisposable>;
|
|
503
|
-
FieldCssClass<TField>(accessor: System_Linq_Expressions.Expression_1<System.Func_1<TField>>): Rewrap<this, string>;
|
|
504
|
-
FieldCssClass(fieldIdentifier: Microsoft_AspNetCore_Components_Forms.FieldIdentifier): Rewrap<this, string>;
|
|
505
|
-
SetFieldCssClassProvider(fieldCssClassProvider: Microsoft_AspNetCore_Components_Forms.FieldCssClassProvider): Rewrap<this, void>;
|
|
506
|
-
}
|
|
507
|
-
|
|
508
|
-
export interface __Ext_Microsoft_AspNetCore_Components_Forms_IBrowserFile {
|
|
509
|
-
RequestImageFileAsync(format: string, maxWidth: int, maxHeight: int): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_AspNetCore_Components_Forms.IBrowserFile>>;
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
export interface __Ext_Microsoft_AspNetCore_Components_Forms_Mapping_IServiceCollection {
|
|
513
|
-
AddSupplyValueFromFormProvider(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
export interface __Ext_Microsoft_AspNetCore_Components_Infrastructure_IServiceCollection {
|
|
517
|
-
AddSupplyValueFromPersistentComponentStateProvider(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
518
|
-
}
|
|
519
|
-
|
|
520
|
-
export interface __Ext_Microsoft_AspNetCore_Components_Routing_HttpContext {
|
|
521
|
-
AcceptsInteractiveRouting(): Rewrap<this, boolean>;
|
|
522
|
-
}
|
|
523
|
-
|
|
524
|
-
export interface __Ext_Microsoft_AspNetCore_Components_Web_EventCallbackFactory {
|
|
525
|
-
Create(receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components_Web.ClipboardEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.ClipboardEventArgs>>;
|
|
526
|
-
Create(receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components_Web.ClipboardEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.ClipboardEventArgs>>;
|
|
527
|
-
Create(receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components_Web.DragEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.DragEventArgs>>;
|
|
528
|
-
Create(receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components_Web.DragEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.DragEventArgs>>;
|
|
529
|
-
Create(receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components_Web.ErrorEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.ErrorEventArgs>>;
|
|
530
|
-
Create(receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components_Web.ErrorEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.ErrorEventArgs>>;
|
|
531
|
-
Create(receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components_Web.FocusEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.FocusEventArgs>>;
|
|
532
|
-
Create(receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components_Web.FocusEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.FocusEventArgs>>;
|
|
533
|
-
Create(receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components_Web.KeyboardEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.KeyboardEventArgs>>;
|
|
534
|
-
Create(receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components_Web.KeyboardEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.KeyboardEventArgs>>;
|
|
535
|
-
Create(receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components_Web.MouseEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.MouseEventArgs>>;
|
|
536
|
-
Create(receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components_Web.MouseEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.MouseEventArgs>>;
|
|
537
|
-
Create(receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components_Web.PointerEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.PointerEventArgs>>;
|
|
538
|
-
Create(receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components_Web.PointerEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.PointerEventArgs>>;
|
|
539
|
-
Create(receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components_Web.ProgressEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.ProgressEventArgs>>;
|
|
540
|
-
Create(receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components_Web.ProgressEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.ProgressEventArgs>>;
|
|
541
|
-
Create(receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components_Web.TouchEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.TouchEventArgs>>;
|
|
542
|
-
Create(receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components_Web.TouchEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.TouchEventArgs>>;
|
|
543
|
-
Create(receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components_Web.WheelEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.WheelEventArgs>>;
|
|
544
|
-
Create(receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components_Web.WheelEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.WheelEventArgs>>;
|
|
545
|
-
}
|
|
546
|
-
|
|
547
|
-
export interface __Ext_Microsoft_AspNetCore_Components_Web_RenderTreeBuilder {
|
|
548
|
-
AddEventPreventDefaultAttribute(sequence: int, eventName: string, value: boolean): Rewrap<this, void>;
|
|
549
|
-
AddEventStopPropagationAttribute(sequence: int, eventName: string, value: boolean): Rewrap<this, void>;
|
|
550
|
-
}
|
|
551
|
-
|
|
552
|
-
export interface __Ext_Microsoft_AspNetCore_Components_Web_IJSComponentConfiguration {
|
|
553
|
-
RegisterForJavaScript<TComponent>(identifier: string): Rewrap<this, void>;
|
|
554
|
-
RegisterForJavaScript<TComponent>(identifier: string, javaScriptInitializer: string): Rewrap<this, void>;
|
|
555
|
-
RegisterForJavaScript(componentType: System.Type, identifier: string): Rewrap<this, void>;
|
|
556
|
-
RegisterForJavaScript(componentType: System.Type, identifier: string, javaScriptInitializer: string): Rewrap<this, void>;
|
|
557
|
-
}
|
|
558
|
-
|
|
559
|
-
export interface __Ext_Microsoft_AspNetCore_Connections_IConnectionBuilder {
|
|
560
|
-
UseConnectionHandler<TConnectionHandler>(): Rewrap<this, Microsoft_AspNetCore_Connections.IConnectionBuilder>;
|
|
561
|
-
Use(middleware: System.Func_3<Microsoft_AspNetCore_Connections.ConnectionContext, System.Func_1<System_Threading_Tasks.Task>, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Connections.IConnectionBuilder>;
|
|
562
|
-
Use(middleware: System.Func_3<Microsoft_AspNetCore_Connections.ConnectionContext, Microsoft_AspNetCore_Connections.ConnectionDelegate, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Connections.IConnectionBuilder>;
|
|
563
|
-
Run(middleware: System.Func_2<Microsoft_AspNetCore_Connections.ConnectionContext, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Connections.IConnectionBuilder>;
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
export interface __Ext_Microsoft_AspNetCore_DataProtection_IDataProtectionBuilder {
|
|
567
|
-
SetApplicationName(applicationName: string): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
568
|
-
AddKeyEscrowSink(sink: Microsoft_AspNetCore_DataProtection_KeyManagement.IKeyEscrowSink): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
569
|
-
AddKeyEscrowSink<TImplementation>(): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
570
|
-
AddKeyEscrowSink(factory: System.Func_2<System.IServiceProvider, Microsoft_AspNetCore_DataProtection_KeyManagement.IKeyEscrowSink>): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
571
|
-
AddKeyManagementOptions(setupAction: System.Action_1<Microsoft_AspNetCore_DataProtection_KeyManagement.KeyManagementOptions>): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
572
|
-
DisableAutomaticKeyGeneration(): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
573
|
-
PersistKeysToFileSystem(directory: System_IO.DirectoryInfo): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
574
|
-
PersistKeysToRegistry(registryKey: Microsoft_Win32.RegistryKey): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
575
|
-
ProtectKeysWithCertificate(certificate: System_Security_Cryptography_X509Certificates.X509Certificate2): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
576
|
-
ProtectKeysWithCertificate(thumbprint: string): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
577
|
-
UnprotectKeysWithAnyCertificate(...certificates: System_Security_Cryptography_X509Certificates.X509Certificate2[]): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
578
|
-
ProtectKeysWithDpapi(): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
579
|
-
ProtectKeysWithDpapi(protectToLocalMachine: boolean): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
580
|
-
ProtectKeysWithDpapiNG(): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
581
|
-
ProtectKeysWithDpapiNG(protectionDescriptorRule: string, flags: Microsoft_AspNetCore_DataProtection_XmlEncryption.DpapiNGProtectionDescriptorFlags): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
582
|
-
SetDefaultKeyLifetime(lifetime: System.TimeSpan): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
583
|
-
UseCryptographicAlgorithms(configuration: Microsoft_AspNetCore_DataProtection_AuthenticatedEncryption_ConfigurationModel.AuthenticatedEncryptorConfiguration): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
584
|
-
UseCustomCryptographicAlgorithms(configuration: Microsoft_AspNetCore_DataProtection_AuthenticatedEncryption_ConfigurationModel.CngCbcAuthenticatedEncryptorConfiguration): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
585
|
-
UseCustomCryptographicAlgorithms(configuration: Microsoft_AspNetCore_DataProtection_AuthenticatedEncryption_ConfigurationModel.CngGcmAuthenticatedEncryptorConfiguration): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
586
|
-
UseCustomCryptographicAlgorithms(configuration: Microsoft_AspNetCore_DataProtection_AuthenticatedEncryption_ConfigurationModel.ManagedAuthenticatedEncryptorConfiguration): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
587
|
-
UseEphemeralDataProtectionProvider(): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
588
|
-
}
|
|
589
|
-
|
|
590
|
-
export interface __Ext_Microsoft_AspNetCore_DataProtection_IDataProtectionProvider {
|
|
591
|
-
CreateProtector(purposes: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtector>;
|
|
592
|
-
CreateProtector(purpose: string, ...subPurposes: string[]): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtector>;
|
|
593
|
-
}
|
|
594
|
-
|
|
595
|
-
export interface __Ext_Microsoft_AspNetCore_DataProtection_IDataProtector {
|
|
596
|
-
Protect(plaintext: string): Rewrap<this, string>;
|
|
597
|
-
Unprotect(protectedData: string): Rewrap<this, string>;
|
|
598
|
-
ToTimeLimitedDataProtector(): Rewrap<this, Microsoft_AspNetCore_DataProtection.ITimeLimitedDataProtector>;
|
|
599
|
-
}
|
|
600
|
-
|
|
601
|
-
export interface __Ext_Microsoft_AspNetCore_DataProtection_ITimeLimitedDataProtector {
|
|
602
|
-
ToTimeLimitedDataProtector(): Rewrap<this, Microsoft_AspNetCore_DataProtection.ITimeLimitedDataProtector>;
|
|
603
|
-
Protect(plaintext: byte[], lifetime: System.TimeSpan): Rewrap<this, byte[]>;
|
|
604
|
-
Protect(plaintext: string, expiration: System.DateTimeOffset): Rewrap<this, string>;
|
|
605
|
-
Protect(plaintext: string, lifetime: System.TimeSpan): Rewrap<this, string>;
|
|
606
|
-
Unprotect(protectedData: string, expiration: System.DateTimeOffset): Rewrap<this, string>;
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
export interface __Ext_Microsoft_AspNetCore_DataProtection_IServiceProvider {
|
|
610
|
-
GetApplicationUniqueIdentifier(): Rewrap<this, string | undefined>;
|
|
611
|
-
GetDataProtectionProvider(): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionProvider>;
|
|
612
|
-
GetDataProtector(purposes: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtector>;
|
|
613
|
-
GetDataProtector(purpose: string, ...subPurposes: string[]): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtector>;
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
export interface __Ext_Microsoft_AspNetCore_DataProtection_AuthenticatedEncryption_ConfigurationModel_XElement {
|
|
617
|
-
MarkAsRequiresEncryption(): Rewrap<this, void>;
|
|
618
|
-
}
|
|
619
|
-
|
|
620
|
-
export interface __Ext_Microsoft_AspNetCore_Hosting_IHostingEnvironment {
|
|
621
|
-
IsDevelopment(): Rewrap<this, boolean>;
|
|
622
|
-
IsStaging(): Rewrap<this, boolean>;
|
|
623
|
-
IsProduction(): Rewrap<this, boolean>;
|
|
624
|
-
IsEnvironment(environmentName: string): Rewrap<this, boolean>;
|
|
625
|
-
}
|
|
626
|
-
|
|
627
|
-
export interface __Ext_Microsoft_AspNetCore_Hosting_IWebHost {
|
|
628
|
-
StopAsync(timeout: System.TimeSpan): Rewrap<this, System_Threading_Tasks.Task>;
|
|
629
|
-
WaitForShutdown(): Rewrap<this, void>;
|
|
630
|
-
WaitForShutdownAsync(token?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
631
|
-
Run(): Rewrap<this, void>;
|
|
632
|
-
RunAsync(token?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
export interface __Ext_Microsoft_AspNetCore_Hosting_IWebHostBuilder {
|
|
636
|
-
Configure(configureApp: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
637
|
-
Configure(configureApp: System.Action_2<Microsoft_AspNetCore_Hosting.WebHostBuilderContext, Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
638
|
-
UseStartup<TStartup>(startupFactory: System.Func_2<Microsoft_AspNetCore_Hosting.WebHostBuilderContext, TStartup>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
639
|
-
UseStartup(startupType: System.Type): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
640
|
-
UseStartup<TStartup>(): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
641
|
-
UseDefaultServiceProvider(configure: System.Action_1<Microsoft_Extensions_DependencyInjection.ServiceProviderOptions>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
642
|
-
UseDefaultServiceProvider(configure: System.Action_2<Microsoft_AspNetCore_Hosting.WebHostBuilderContext, Microsoft_Extensions_DependencyInjection.ServiceProviderOptions>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
643
|
-
ConfigureAppConfiguration(configureDelegate: System.Action_1<Microsoft_Extensions_Configuration.IConfigurationBuilder>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
644
|
-
ConfigureLogging(configureLogging: System.Action_1<Microsoft_Extensions_Logging.ILoggingBuilder>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
645
|
-
ConfigureLogging(configureLogging: System.Action_2<Microsoft_AspNetCore_Hosting.WebHostBuilderContext, Microsoft_Extensions_Logging.ILoggingBuilder>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
646
|
-
UseStaticWebAssets(): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
647
|
-
UseConfiguration(configuration: Microsoft_Extensions_Configuration.IConfiguration): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
648
|
-
CaptureStartupErrors(captureStartupErrors: boolean): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
649
|
-
UseStartup(startupAssemblyName: string): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
650
|
-
UseServer(server: Microsoft_AspNetCore_Hosting_Server.IServer): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
651
|
-
UseEnvironment(environment: string): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
652
|
-
UseContentRoot(contentRoot: string): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
653
|
-
UseWebRoot(webRoot: string): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
654
|
-
UseUrls(...urls: string[]): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
655
|
-
PreferHostingUrls(preferHostingUrls: boolean): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
656
|
-
SuppressStatusMessages(suppressStatusMessages: boolean): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
657
|
-
UseShutdownTimeout(timeout: System.TimeSpan): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
658
|
-
Start(...urls: string[]): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHost>;
|
|
659
|
-
UseHttpSys(): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
660
|
-
UseHttpSys(options: System.Action_1<Microsoft_AspNetCore_Server_HttpSys.HttpSysOptions>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
661
|
-
UseIIS(): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
662
|
-
UseIISIntegration(): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
663
|
-
UseKestrelHttpsConfiguration(): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
664
|
-
UseKestrel(): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
665
|
-
UseKestrelCore(): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
666
|
-
UseKestrel(options: System.Action_1<Microsoft_AspNetCore_Server_Kestrel_Core.KestrelServerOptions>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
667
|
-
ConfigureKestrel(options: System.Action_1<Microsoft_AspNetCore_Server_Kestrel_Core.KestrelServerOptions>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
668
|
-
UseKestrel(configureOptions: System.Action_2<Microsoft_AspNetCore_Hosting.WebHostBuilderContext, Microsoft_AspNetCore_Server_Kestrel_Core.KestrelServerOptions>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
669
|
-
ConfigureKestrel(configureOptions: System.Action_2<Microsoft_AspNetCore_Hosting.WebHostBuilderContext, Microsoft_AspNetCore_Server_Kestrel_Core.KestrelServerOptions>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
670
|
-
UseNamedPipes(): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
671
|
-
UseNamedPipes(configureOptions: System.Action_1<Microsoft_AspNetCore_Server_Kestrel_Transport_NamedPipes.NamedPipeTransportOptions>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
672
|
-
UseQuic(): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
673
|
-
UseQuic(configureOptions: System.Action_1<Microsoft_AspNetCore_Server_Kestrel_Transport_Quic.QuicTransportOptions>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
674
|
-
UseSockets(): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
675
|
-
UseSockets(configureOptions: System.Action_1<Microsoft_AspNetCore_Server_Kestrel_Transport_Sockets.SocketTransportOptions>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
676
|
-
}
|
|
677
|
-
|
|
678
|
-
export interface __Ext_Microsoft_AspNetCore_Hosting_KestrelServerOptions {
|
|
679
|
-
UseSystemd(): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.KestrelServerOptions>;
|
|
680
|
-
UseSystemd(configure: System.Action_1<Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.KestrelServerOptions>;
|
|
681
|
-
}
|
|
682
|
-
|
|
683
|
-
export interface __Ext_Microsoft_AspNetCore_Hosting_ListenOptions {
|
|
684
|
-
UseHttps(): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
685
|
-
UseHttps(fileName: string): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
686
|
-
UseHttps(fileName: string, password: string): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
687
|
-
UseHttps(fileName: string, password: string, configureOptions: System.Action_1<Microsoft_AspNetCore_Server_Kestrel_Https.HttpsConnectionAdapterOptions>): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
688
|
-
UseHttps(storeName: System_Security_Cryptography_X509Certificates.StoreName, subject: string): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
689
|
-
UseHttps(storeName: System_Security_Cryptography_X509Certificates.StoreName, subject: string, allowInvalid: boolean): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
690
|
-
UseHttps(storeName: System_Security_Cryptography_X509Certificates.StoreName, subject: string, allowInvalid: boolean, location: System_Security_Cryptography_X509Certificates.StoreLocation): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
691
|
-
UseHttps(storeName: System_Security_Cryptography_X509Certificates.StoreName, subject: string, allowInvalid: boolean, location: System_Security_Cryptography_X509Certificates.StoreLocation, configureOptions: System.Action_1<Microsoft_AspNetCore_Server_Kestrel_Https.HttpsConnectionAdapterOptions>): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
692
|
-
UseHttps(serverCertificate: System_Security_Cryptography_X509Certificates.X509Certificate2): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
693
|
-
UseHttps(serverCertificate: System_Security_Cryptography_X509Certificates.X509Certificate2, configureOptions: System.Action_1<Microsoft_AspNetCore_Server_Kestrel_Https.HttpsConnectionAdapterOptions>): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
694
|
-
UseHttps(configureOptions: System.Action_1<Microsoft_AspNetCore_Server_Kestrel_Https.HttpsConnectionAdapterOptions>): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
695
|
-
UseHttps(httpsOptions: Microsoft_AspNetCore_Server_Kestrel_Https.HttpsConnectionAdapterOptions): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
696
|
-
UseHttps(serverOptionsSelectionCallback: System_Net_Security.ServerOptionsSelectionCallback, state: unknown): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
697
|
-
UseHttps(serverOptionsSelectionCallback: System_Net_Security.ServerOptionsSelectionCallback, state: unknown, handshakeTimeout: System.TimeSpan): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
698
|
-
UseHttps(callbackOptions: Microsoft_AspNetCore_Server_Kestrel_Https.TlsHandshakeCallbackOptions): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
699
|
-
UseConnectionLogging(): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
700
|
-
UseConnectionLogging(loggerName: string): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
701
|
-
}
|
|
702
|
-
|
|
703
|
-
export interface __Ext_Microsoft_AspNetCore_Html_IHtmlContentBuilder {
|
|
704
|
-
AppendFormat(format: string, ...args: unknown[]): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContentBuilder>;
|
|
705
|
-
AppendFormat(formatProvider: System.IFormatProvider, format: string, ...args: unknown[]): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContentBuilder>;
|
|
706
|
-
AppendLine(): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContentBuilder>;
|
|
707
|
-
AppendLine(unencoded: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContentBuilder>;
|
|
708
|
-
AppendLine(content: Microsoft_AspNetCore_Html.IHtmlContent): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContentBuilder>;
|
|
709
|
-
AppendHtmlLine(encoded: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContentBuilder>;
|
|
710
|
-
SetContent(unencoded: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContentBuilder>;
|
|
711
|
-
SetHtmlContent(content: Microsoft_AspNetCore_Html.IHtmlContent): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContentBuilder>;
|
|
712
|
-
SetHtmlContent(encoded: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContentBuilder>;
|
|
713
|
-
}
|
|
714
|
-
|
|
715
|
-
export interface __Ext_Microsoft_AspNetCore_Http_RouteHandlerBuilder {
|
|
716
|
-
AddEndpointFilter<TFilterType>(): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
717
|
-
ExcludeFromDescription(): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
718
|
-
Produces<TResponse>(statusCode?: int, contentType?: string, ...additionalContentTypes: string[]): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
719
|
-
Produces(statusCode: int, responseType?: System.Type, contentType?: string, ...additionalContentTypes: string[]): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
720
|
-
ProducesProblem(statusCode: int, contentType?: string): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
721
|
-
ProducesValidationProblem(statusCode?: int, contentType?: string): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
722
|
-
WithTags(...tags: string[]): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
723
|
-
Accepts<TRequest>(contentType: string, ...additionalContentTypes: string[]): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
724
|
-
Accepts<TRequest>(isOptional: boolean, contentType: string, ...additionalContentTypes: string[]): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
725
|
-
Accepts(requestType: System.Type, contentType: string, ...additionalContentTypes: string[]): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
726
|
-
Accepts(requestType: System.Type, isOptional: boolean, contentType: string, ...additionalContentTypes: string[]): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
727
|
-
}
|
|
728
|
-
|
|
729
|
-
export interface __Ext_Microsoft_AspNetCore_Http_HttpContext {
|
|
730
|
-
GetEndpoint(): Rewrap<this, Microsoft_AspNetCore_Http.Endpoint | undefined>;
|
|
731
|
-
SetEndpoint(endpoint: Microsoft_AspNetCore_Http.Endpoint): Rewrap<this, void>;
|
|
732
|
-
GetServerVariable(variableName: string): Rewrap<this, string | undefined>;
|
|
733
|
-
}
|
|
734
|
-
|
|
735
|
-
export interface __Ext_Microsoft_AspNetCore_Http_HttpRequest {
|
|
736
|
-
EnableBuffering(): Rewrap<this, void>;
|
|
737
|
-
EnableBuffering(bufferThreshold: int): Rewrap<this, void>;
|
|
738
|
-
EnableBuffering(bufferLimit: long): Rewrap<this, void>;
|
|
739
|
-
EnableBuffering(bufferThreshold: int, bufferLimit: long): Rewrap<this, void>;
|
|
740
|
-
ReadFormAsync(options: Microsoft_AspNetCore_Http_Features.FormOptions, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Http.IFormCollection>>;
|
|
741
|
-
GetDeclaredTrailers(): Rewrap<this, Microsoft_Extensions_Primitives.StringValues>;
|
|
742
|
-
SupportsTrailers(): Rewrap<this, boolean>;
|
|
743
|
-
CheckTrailersAvailable(): Rewrap<this, boolean>;
|
|
744
|
-
GetTrailer(trailerName: string): Rewrap<this, Microsoft_Extensions_Primitives.StringValues>;
|
|
745
|
-
GetTypedHeaders(): Rewrap<this, Microsoft_AspNetCore_Http_Headers.RequestHeaders>;
|
|
746
|
-
ReadFromJsonAsync<TValue>(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
747
|
-
ReadFromJsonAsync<TValue>(options: System_Text_Json.JsonSerializerOptions, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
748
|
-
ReadFromJsonAsync<TValue>(jsonTypeInfo: System_Text_Json_Serialization_Metadata.JsonTypeInfo_1<TValue>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
749
|
-
ReadFromJsonAsync(jsonTypeInfo: System_Text_Json_Serialization_Metadata.JsonTypeInfo, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<unknown>>;
|
|
750
|
-
ReadFromJsonAsync(type: System.Type, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<unknown>>;
|
|
751
|
-
ReadFromJsonAsync(type: System.Type, options: System_Text_Json.JsonSerializerOptions, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<unknown>>;
|
|
752
|
-
ReadFromJsonAsync(type: System.Type, context: System_Text_Json_Serialization.JsonSerializerContext, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<unknown>>;
|
|
753
|
-
HasJsonContentType(): Rewrap<this, boolean>;
|
|
754
|
-
}
|
|
755
|
-
|
|
756
|
-
export interface __Ext_Microsoft_AspNetCore_Http_HttpResponse {
|
|
757
|
-
WriteAsync(text: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
758
|
-
WriteAsync(text: string, encoding: System_Text.Encoding, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
759
|
-
DeclareTrailer(trailerName: string): Rewrap<this, void>;
|
|
760
|
-
SupportsTrailers(): Rewrap<this, boolean>;
|
|
761
|
-
AppendTrailer(trailerName: string, trailerValues: Microsoft_Extensions_Primitives.StringValues): Rewrap<this, void>;
|
|
762
|
-
GetTypedHeaders(): Rewrap<this, Microsoft_AspNetCore_Http_Headers.ResponseHeaders>;
|
|
763
|
-
WriteAsJsonAsync<TValue>(value: TValue, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
764
|
-
WriteAsJsonAsync<TValue>(value: TValue, options: System_Text_Json.JsonSerializerOptions, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
765
|
-
WriteAsJsonAsync<TValue>(value: TValue, options: System_Text_Json.JsonSerializerOptions, contentType: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
766
|
-
WriteAsJsonAsync<TValue>(value: TValue, jsonTypeInfo: System_Text_Json_Serialization_Metadata.JsonTypeInfo_1<TValue>, contentType?: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
767
|
-
WriteAsJsonAsync(value: unknown, jsonTypeInfo: System_Text_Json_Serialization_Metadata.JsonTypeInfo, contentType?: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
768
|
-
WriteAsJsonAsync(value: unknown, type: System.Type, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
769
|
-
WriteAsJsonAsync(value: unknown, type: System.Type, options: System_Text_Json.JsonSerializerOptions, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
770
|
-
WriteAsJsonAsync(value: unknown, type: System.Type, options: System_Text_Json.JsonSerializerOptions, contentType: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
771
|
-
WriteAsJsonAsync(value: unknown, type: System.Type, context: System_Text_Json_Serialization.JsonSerializerContext, contentType?: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
772
|
-
Clear(): Rewrap<this, void>;
|
|
773
|
-
Redirect(location: string, permanent: boolean, preserveMethod: boolean): Rewrap<this, void>;
|
|
774
|
-
SendFileAsync(file: Microsoft_Extensions_FileProviders.IFileInfo, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
775
|
-
SendFileAsync(file: Microsoft_Extensions_FileProviders.IFileInfo, offset: long, count: System.Nullable_1<System_Internal.Int64>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
776
|
-
SendFileAsync(fileName: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
777
|
-
SendFileAsync(fileName: string, offset: long, count: System.Nullable_1<System_Internal.Int64>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
778
|
-
}
|
|
779
|
-
|
|
780
|
-
export interface __Ext_Microsoft_AspNetCore_Http_IHeaderDictionary {
|
|
781
|
-
Append(key: string, value: Microsoft_Extensions_Primitives.StringValues): Rewrap<this, void>;
|
|
782
|
-
AppendCommaSeparatedValues(key: string, ...values: string[]): Rewrap<this, void>;
|
|
783
|
-
GetCommaSeparatedValues(key: string): Rewrap<this, string[]>;
|
|
784
|
-
SetCommaSeparatedValues(key: string, ...values: string[]): Rewrap<this, void>;
|
|
785
|
-
AppendList<T>(name: string, values: System_Collections_Generic.IList_1<T>): Rewrap<this, void>;
|
|
786
|
-
}
|
|
787
|
-
|
|
788
|
-
export interface __Ext_Microsoft_AspNetCore_Http_ISession {
|
|
789
|
-
SetInt32(key: string, value: int): Rewrap<this, void>;
|
|
790
|
-
GetInt32(key: string): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
791
|
-
SetString(key: string, value: string): Rewrap<this, void>;
|
|
792
|
-
GetString(key: string): Rewrap<this, string | undefined>;
|
|
793
|
-
Get(key: string): Rewrap<this, byte[] | undefined>;
|
|
794
|
-
}
|
|
795
|
-
|
|
796
|
-
export interface __Ext_Microsoft_AspNetCore_Http_RouteGroupBuilder {
|
|
797
|
-
AddEndpointFilter<TFilterType>(): Rewrap<this, Microsoft_AspNetCore_Routing.RouteGroupBuilder>;
|
|
798
|
-
}
|
|
799
|
-
|
|
800
|
-
export interface __Ext_Microsoft_AspNetCore_Http_Connections_ConnectionContext {
|
|
801
|
-
GetHttpContext(): Rewrap<this, Microsoft_AspNetCore_Http.HttpContext | undefined>;
|
|
802
|
-
}
|
|
803
|
-
|
|
804
|
-
export interface __Ext_Microsoft_AspNetCore_Http_Extensions_HttpRequest {
|
|
805
|
-
GetMultipartBoundary(): Rewrap<this, string>;
|
|
806
|
-
GetEncodedUrl(): Rewrap<this, string>;
|
|
807
|
-
GetEncodedPathAndQuery(): Rewrap<this, string>;
|
|
808
|
-
GetDisplayUrl(): Rewrap<this, string>;
|
|
809
|
-
}
|
|
810
|
-
|
|
811
|
-
export interface __Ext_Microsoft_AspNetCore_Http_Features_IFeatureCollection {
|
|
812
|
-
GetRequiredFeature<TFeature>(): Rewrap<this, TFeature>;
|
|
813
|
-
GetRequiredFeature(key: System.Type): Rewrap<this, unknown>;
|
|
814
|
-
}
|
|
815
|
-
|
|
816
|
-
export interface __Ext_Microsoft_AspNetCore_Identity_AuthenticationBuilder {
|
|
817
|
-
AddIdentityCookies(): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityCookiesBuilder>;
|
|
818
|
-
AddIdentityCookies(configureCookies: System.Action_1<Microsoft_AspNetCore_Identity.IdentityCookiesBuilder>): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityCookiesBuilder>;
|
|
819
|
-
AddApplicationCookie(): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<Microsoft_AspNetCore_Authentication_Cookies.CookieAuthenticationOptions>>;
|
|
820
|
-
AddExternalCookie(): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<Microsoft_AspNetCore_Authentication_Cookies.CookieAuthenticationOptions>>;
|
|
821
|
-
AddTwoFactorRememberMeCookie(): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<Microsoft_AspNetCore_Authentication_Cookies.CookieAuthenticationOptions>>;
|
|
822
|
-
AddTwoFactorUserIdCookie(): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<Microsoft_AspNetCore_Authentication_Cookies.CookieAuthenticationOptions>>;
|
|
823
|
-
}
|
|
824
|
-
|
|
825
|
-
export interface __Ext_Microsoft_AspNetCore_Identity_IdentityBuilder {
|
|
826
|
-
AddDefaultTokenProviders(): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityBuilder>;
|
|
827
|
-
AddSignInManager(): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityBuilder>;
|
|
828
|
-
AddApiEndpoints(): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityBuilder>;
|
|
829
|
-
}
|
|
830
|
-
|
|
831
|
-
export interface __Ext_Microsoft_AspNetCore_Mvc_IUrlHelper {
|
|
832
|
-
Action(): Rewrap<this, string | undefined>;
|
|
833
|
-
Action(action: string): Rewrap<this, string | undefined>;
|
|
834
|
-
Action(action: string, values: unknown): Rewrap<this, string | undefined>;
|
|
835
|
-
Action(action: string, controller: string): Rewrap<this, string | undefined>;
|
|
836
|
-
Action(action: string, controller: string, values: unknown): Rewrap<this, string | undefined>;
|
|
837
|
-
Action(action: string, controller: string, values: unknown, protocol: string): Rewrap<this, string | undefined>;
|
|
838
|
-
Action(action: string, controller: string, values: unknown, protocol: string, host: string): Rewrap<this, string | undefined>;
|
|
839
|
-
Action(action: string, controller: string, values: unknown, protocol: string, host: string, fragment: string): Rewrap<this, string | undefined>;
|
|
840
|
-
RouteUrl(values: unknown): Rewrap<this, string | undefined>;
|
|
841
|
-
RouteUrl(routeName: string): Rewrap<this, string | undefined>;
|
|
842
|
-
RouteUrl(routeName: string, values: unknown): Rewrap<this, string | undefined>;
|
|
843
|
-
RouteUrl(routeName: string, values: unknown, protocol: string): Rewrap<this, string | undefined>;
|
|
844
|
-
RouteUrl(routeName: string, values: unknown, protocol: string, host: string): Rewrap<this, string | undefined>;
|
|
845
|
-
RouteUrl(routeName: string, values: unknown, protocol: string, host: string, fragment: string): Rewrap<this, string | undefined>;
|
|
846
|
-
Page(pageName: string): Rewrap<this, string | undefined>;
|
|
847
|
-
Page(pageName: string, pageHandler: string): Rewrap<this, string | undefined>;
|
|
848
|
-
Page(pageName: string, values: unknown): Rewrap<this, string | undefined>;
|
|
849
|
-
Page(pageName: string, pageHandler: string, values: unknown): Rewrap<this, string | undefined>;
|
|
850
|
-
Page(pageName: string, pageHandler: string, values: unknown, protocol: string): Rewrap<this, string | undefined>;
|
|
851
|
-
Page(pageName: string, pageHandler: string, values: unknown, protocol: string, host: string): Rewrap<this, string | undefined>;
|
|
852
|
-
Page(pageName: string, pageHandler: string, values: unknown, protocol: string, host: string, fragment: string): Rewrap<this, string | undefined>;
|
|
853
|
-
ActionLink(action?: string, controller?: string, values?: unknown, protocol?: string, host?: string, fragment?: string): Rewrap<this, string | undefined>;
|
|
854
|
-
PageLink(pageName?: string, pageHandler?: string, values?: unknown, protocol?: string, host?: string, fragment?: string): Rewrap<this, string | undefined>;
|
|
855
|
-
}
|
|
856
|
-
|
|
857
|
-
export interface __Ext_Microsoft_AspNetCore_Mvc_Abstractions_ActionDescriptor {
|
|
858
|
-
GetProperty<T>(): Rewrap<this, T | undefined>;
|
|
859
|
-
SetProperty<T>(value: T): Rewrap<this, void>;
|
|
860
|
-
}
|
|
861
|
-
|
|
862
|
-
export interface __Ext_Microsoft_AspNetCore_Mvc_ApiExplorer_ApiDescription {
|
|
863
|
-
GetProperty<T>(): Rewrap<this, T | undefined>;
|
|
864
|
-
SetProperty<T>(value: T): Rewrap<this, void>;
|
|
865
|
-
}
|
|
866
|
-
|
|
867
|
-
export interface __Ext_Microsoft_AspNetCore_Mvc_Formatters_Xml_IEnumerable_1<T> {
|
|
868
|
-
GetWrapperProvider(wrapperProviderContext: Microsoft_AspNetCore_Mvc_Formatters_Xml.WrapperProviderContext): Rewrap<this, Microsoft_AspNetCore_Mvc_Formatters_Xml.IWrapperProvider | undefined>;
|
|
869
|
-
}
|
|
870
|
-
|
|
871
|
-
export interface __Ext_Microsoft_AspNetCore_Mvc_Localization_IHtmlLocalizer {
|
|
872
|
-
GetHtml(name: string): Rewrap<this, Microsoft_AspNetCore_Mvc_Localization.LocalizedHtmlString>;
|
|
873
|
-
GetHtml(name: string, ...arguments: unknown[]): Rewrap<this, Microsoft_AspNetCore_Mvc_Localization.LocalizedHtmlString>;
|
|
874
|
-
GetAllStrings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_Localization.LocalizedString>>;
|
|
875
|
-
}
|
|
876
|
-
|
|
877
|
-
export interface __Ext_Microsoft_AspNetCore_Mvc_ModelBinding_IModelMetadataProvider {
|
|
878
|
-
GetMetadataForProperty(containerType: System.Type, propertyName: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ModelBinding.ModelMetadata>;
|
|
879
|
-
}
|
|
880
|
-
|
|
881
|
-
export interface __Ext_Microsoft_AspNetCore_Mvc_ModelBinding_ModelStateDictionary {
|
|
882
|
-
AddModelError<TModel>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, unknown>>, errorMessage: string): Rewrap<this, void>;
|
|
883
|
-
TryAddModelException<TModel>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, unknown>>, exception: System.Exception): Rewrap<this, void>;
|
|
884
|
-
AddModelError<TModel>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, unknown>>, exception: System.Exception, metadata: Microsoft_AspNetCore_Mvc_ModelBinding.ModelMetadata): Rewrap<this, void>;
|
|
885
|
-
Remove<TModel>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, unknown>>): Rewrap<this, boolean>;
|
|
886
|
-
RemoveAll<TModel>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, unknown>>): Rewrap<this, void>;
|
|
887
|
-
}
|
|
888
|
-
|
|
889
|
-
export interface __Ext_Microsoft_AspNetCore_Mvc_ModelBinding_IList_1<T> {
|
|
890
|
-
RemoveType<TModelBinderProvider>(): Rewrap<this, void>;
|
|
891
|
-
RemoveType(type: System.Type): Rewrap<this, void>;
|
|
892
|
-
RemoveType<TValueProviderFactory>(): Rewrap<this, void>;
|
|
893
|
-
RemoveType(type: System.Type): Rewrap<this, void>;
|
|
894
|
-
}
|
|
895
|
-
|
|
896
|
-
export interface __Ext_Microsoft_AspNetCore_Mvc_ModelBinding_Metadata_IList_1<T> {
|
|
897
|
-
RemoveType<TMetadataDetailsProvider>(): Rewrap<this, void>;
|
|
898
|
-
RemoveType(type: System.Type): Rewrap<this, void>;
|
|
899
|
-
}
|
|
900
|
-
|
|
901
|
-
export interface __Ext_Microsoft_AspNetCore_Mvc_ModelBinding_Validation_IList_1<T> {
|
|
902
|
-
RemoveType<TModelValidatorProvider>(): Rewrap<this, void>;
|
|
903
|
-
RemoveType(type: System.Type): Rewrap<this, void>;
|
|
904
|
-
}
|
|
905
|
-
|
|
906
|
-
export interface __Ext_Microsoft_AspNetCore_Mvc_Rendering_IViewComponentHelper {
|
|
907
|
-
InvokeAsync(name: string): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Html.IHtmlContent>>;
|
|
908
|
-
InvokeAsync(componentType: System.Type): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Html.IHtmlContent>>;
|
|
909
|
-
InvokeAsync<TComponent>(arguments: unknown): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Html.IHtmlContent>>;
|
|
910
|
-
InvokeAsync<TComponent>(): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Html.IHtmlContent>>;
|
|
911
|
-
}
|
|
912
|
-
|
|
913
|
-
export interface __Ext_Microsoft_AspNetCore_Mvc_Rendering_IHtmlHelper {
|
|
914
|
-
RenderComponentAsync<TComponent>(renderMode: Microsoft_AspNetCore_Mvc_Rendering.RenderMode): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Html.IHtmlContent>>;
|
|
915
|
-
RenderComponentAsync<TComponent>(renderMode: Microsoft_AspNetCore_Mvc_Rendering.RenderMode, parameters: unknown): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Html.IHtmlContent>>;
|
|
916
|
-
RenderComponentAsync(componentType: System.Type, renderMode: Microsoft_AspNetCore_Mvc_Rendering.RenderMode, parameters: unknown): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Html.IHtmlContent>>;
|
|
917
|
-
Display(expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
918
|
-
Display(expression: string, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
919
|
-
Display(expression: string, templateName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
920
|
-
Display(expression: string, templateName: string, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
921
|
-
Display(expression: string, templateName: string, htmlFieldName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
922
|
-
DisplayForModel(): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
923
|
-
DisplayForModel(additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
924
|
-
DisplayForModel(templateName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
925
|
-
DisplayForModel(templateName: string, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
926
|
-
DisplayForModel(templateName: string, htmlFieldName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
927
|
-
DisplayForModel(templateName: string, htmlFieldName: string, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
928
|
-
DisplayNameForModel(): Rewrap<this, string>;
|
|
929
|
-
Editor(expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
930
|
-
Editor(expression: string, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
931
|
-
Editor(expression: string, templateName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
932
|
-
Editor(expression: string, templateName: string, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
933
|
-
Editor(expression: string, templateName: string, htmlFieldName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
934
|
-
EditorForModel(): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
935
|
-
EditorForModel(additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
936
|
-
EditorForModel(templateName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
937
|
-
EditorForModel(templateName: string, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
938
|
-
EditorForModel(templateName: string, htmlFieldName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
939
|
-
EditorForModel(templateName: string, htmlFieldName: string, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
940
|
-
BeginForm(): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
941
|
-
BeginForm(antiforgery: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
942
|
-
BeginForm(method: Microsoft_AspNetCore_Mvc_Rendering.FormMethod): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
943
|
-
BeginForm(method: Microsoft_AspNetCore_Mvc_Rendering.FormMethod, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
944
|
-
BeginForm(method: Microsoft_AspNetCore_Mvc_Rendering.FormMethod, antiforgery: System.Nullable_1<System_Internal.Boolean>, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
945
|
-
BeginForm(routeValues: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
946
|
-
BeginForm(actionName: string, controllerName: string): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
947
|
-
BeginForm(actionName: string, controllerName: string, routeValues: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
948
|
-
BeginForm(actionName: string, controllerName: string, method: Microsoft_AspNetCore_Mvc_Rendering.FormMethod): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
949
|
-
BeginForm(actionName: string, controllerName: string, routeValues: unknown, method: Microsoft_AspNetCore_Mvc_Rendering.FormMethod): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
950
|
-
BeginForm(actionName: string, controllerName: string, method: Microsoft_AspNetCore_Mvc_Rendering.FormMethod, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
951
|
-
BeginRouteForm(routeValues: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
952
|
-
BeginRouteForm(routeValues: unknown, antiforgery: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
953
|
-
BeginRouteForm(routeName: string): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
954
|
-
BeginRouteForm(routeName: string, antiforgery: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
955
|
-
BeginRouteForm(routeName: string, routeValues: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
956
|
-
BeginRouteForm(routeName: string, method: Microsoft_AspNetCore_Mvc_Rendering.FormMethod): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
957
|
-
BeginRouteForm(routeName: string, routeValues: unknown, method: Microsoft_AspNetCore_Mvc_Rendering.FormMethod): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
958
|
-
BeginRouteForm(routeName: string, method: Microsoft_AspNetCore_Mvc_Rendering.FormMethod, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
959
|
-
CheckBox(expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
960
|
-
CheckBox(expression: string, isChecked: boolean): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
961
|
-
CheckBox(expression: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
962
|
-
Hidden(expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
963
|
-
Hidden(expression: string, value: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
964
|
-
Password(expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
965
|
-
Password(expression: string, value: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
966
|
-
RadioButton(expression: string, value: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
967
|
-
RadioButton(expression: string, value: unknown, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
968
|
-
RadioButton(expression: string, value: unknown, isChecked: boolean): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
969
|
-
TextBox(expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
970
|
-
TextBox(expression: string, value: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
971
|
-
TextBox(expression: string, value: unknown, format: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
972
|
-
TextBox(expression: string, value: unknown, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
973
|
-
TextArea(expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
974
|
-
TextArea(expression: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
975
|
-
TextArea(expression: string, value: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
976
|
-
TextArea(expression: string, value: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
977
|
-
Label(expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
978
|
-
Label(expression: string, labelText: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
979
|
-
LabelForModel(): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
980
|
-
LabelForModel(labelText: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
981
|
-
LabelForModel(htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
982
|
-
LabelForModel(labelText: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
983
|
-
ActionLink(linkText: string, actionName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
984
|
-
ActionLink(linkText: string, actionName: string, routeValues: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
985
|
-
ActionLink(linkText: string, actionName: string, routeValues: unknown, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
986
|
-
ActionLink(linkText: string, actionName: string, controllerName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
987
|
-
ActionLink(linkText: string, actionName: string, controllerName: string, routeValues: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
988
|
-
ActionLink(linkText: string, actionName: string, controllerName: string, routeValues: unknown, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
989
|
-
RouteLink(linkText: string, routeValues: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
990
|
-
RouteLink(linkText: string, routeName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
991
|
-
RouteLink(linkText: string, routeName: string, routeValues: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
992
|
-
RouteLink(linkText: string, routeValues: unknown, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
993
|
-
RouteLink(linkText: string, routeName: string, routeValues: unknown, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
994
|
-
NameForModel(): Rewrap<this, string>;
|
|
995
|
-
IdForModel(): Rewrap<this, string>;
|
|
996
|
-
PartialAsync(partialViewName: string): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Html.IHtmlContent>>;
|
|
997
|
-
PartialAsync(partialViewName: string, viewData: Microsoft_AspNetCore_Mvc_ViewFeatures.ViewDataDictionary): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Html.IHtmlContent>>;
|
|
998
|
-
PartialAsync(partialViewName: string, model: unknown): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Html.IHtmlContent>>;
|
|
999
|
-
Partial(partialViewName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1000
|
-
Partial(partialViewName: string, viewData: Microsoft_AspNetCore_Mvc_ViewFeatures.ViewDataDictionary): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1001
|
-
Partial(partialViewName: string, model: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1002
|
-
Partial(partialViewName: string, model: unknown, viewData: Microsoft_AspNetCore_Mvc_ViewFeatures.ViewDataDictionary): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1003
|
-
RenderPartial(partialViewName: string): Rewrap<this, void>;
|
|
1004
|
-
RenderPartial(partialViewName: string, viewData: Microsoft_AspNetCore_Mvc_ViewFeatures.ViewDataDictionary): Rewrap<this, void>;
|
|
1005
|
-
RenderPartial(partialViewName: string, model: unknown): Rewrap<this, void>;
|
|
1006
|
-
RenderPartial(partialViewName: string, model: unknown, viewData: Microsoft_AspNetCore_Mvc_ViewFeatures.ViewDataDictionary): Rewrap<this, void>;
|
|
1007
|
-
RenderPartialAsync(partialViewName: string): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1008
|
-
RenderPartialAsync(partialViewName: string, viewData: Microsoft_AspNetCore_Mvc_ViewFeatures.ViewDataDictionary): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1009
|
-
RenderPartialAsync(partialViewName: string, model: unknown): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1010
|
-
DropDownList(expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1011
|
-
DropDownList(expression: string, optionLabel: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1012
|
-
DropDownList(expression: string, selectList: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Mvc_Rendering.SelectListItem>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1013
|
-
DropDownList(expression: string, selectList: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Mvc_Rendering.SelectListItem>, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1014
|
-
DropDownList(expression: string, selectList: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Mvc_Rendering.SelectListItem>, optionLabel: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1015
|
-
ListBox(expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1016
|
-
ListBox(expression: string, selectList: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Mvc_Rendering.SelectListItem>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1017
|
-
ValidationMessage(expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1018
|
-
ValidationMessage(expression: string, message: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1019
|
-
ValidationMessage(expression: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1020
|
-
ValidationMessage(expression: string, message: string, tag: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1021
|
-
ValidationMessage(expression: string, message: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1022
|
-
ValidationSummary(): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1023
|
-
ValidationSummary(excludePropertyErrors: boolean): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1024
|
-
ValidationSummary(message: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1025
|
-
ValidationSummary(message: string, tag: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1026
|
-
ValidationSummary(excludePropertyErrors: boolean, message: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1027
|
-
ValidationSummary(message: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1028
|
-
ValidationSummary(message: string, htmlAttributes: unknown, tag: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1029
|
-
ValidationSummary(excludePropertyErrors: boolean, message: string, tag: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1030
|
-
ValidationSummary(excludePropertyErrors: boolean, message: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1031
|
-
Value(expression: string): Rewrap<this, string>;
|
|
1032
|
-
ValueForModel(): Rewrap<this, string>;
|
|
1033
|
-
ValueForModel(format: string): Rewrap<this, string>;
|
|
1034
|
-
}
|
|
1035
|
-
|
|
1036
|
-
export interface __Ext_Microsoft_AspNetCore_Mvc_Rendering_IHtmlHelper_1<TModel> {
|
|
1037
|
-
DisplayFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1038
|
-
DisplayFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1039
|
-
DisplayFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, templateName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1040
|
-
DisplayFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, templateName: string, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1041
|
-
DisplayFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, templateName: string, htmlFieldName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1042
|
-
DisplayNameFor<TModelItem, TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModelItem, TResult>>): Rewrap<this, string>;
|
|
1043
|
-
EditorFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1044
|
-
EditorFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1045
|
-
EditorFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, templateName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1046
|
-
EditorFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, templateName: string, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1047
|
-
EditorFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, templateName: string, htmlFieldName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1048
|
-
CheckBoxFor(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, System_Internal.Boolean>>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1049
|
-
HiddenFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1050
|
-
PasswordFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1051
|
-
RadioButtonFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, value: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1052
|
-
TextBoxFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1053
|
-
TextBoxFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, format: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1054
|
-
TextBoxFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1055
|
-
TextAreaFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1056
|
-
TextAreaFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1057
|
-
LabelFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1058
|
-
LabelFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, labelText: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1059
|
-
LabelFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1060
|
-
DropDownListFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, selectList: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Mvc_Rendering.SelectListItem>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1061
|
-
DropDownListFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, selectList: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Mvc_Rendering.SelectListItem>, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1062
|
-
DropDownListFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, selectList: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Mvc_Rendering.SelectListItem>, optionLabel: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1063
|
-
ListBoxFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, selectList: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Mvc_Rendering.SelectListItem>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1064
|
-
ValidationMessageFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1065
|
-
ValidationMessageFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, message: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1066
|
-
ValidationMessageFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, message: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1067
|
-
ValidationMessageFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, message: string, tag: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1068
|
-
ValueFor<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>): Rewrap<this, string>;
|
|
1069
|
-
}
|
|
1070
|
-
|
|
1071
|
-
export interface __Ext_Microsoft_AspNetCore_Mvc_TagHelpers_TagHelperOutput {
|
|
1072
|
-
CopyHtmlAttribute(attributeName: string, context: Microsoft_AspNetCore_Razor_TagHelpers.TagHelperContext): Rewrap<this, void>;
|
|
1073
|
-
MergeAttributes(tagBuilder: Microsoft_AspNetCore_Mvc_Rendering.TagBuilder): Rewrap<this, void>;
|
|
1074
|
-
RemoveRange(attributes: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Razor_TagHelpers.TagHelperAttribute>): Rewrap<this, void>;
|
|
1075
|
-
AddClass(classValue: string, htmlEncoder: System_Text_Encodings_Web.HtmlEncoder): Rewrap<this, void>;
|
|
1076
|
-
RemoveClass(classValue: string, htmlEncoder: System_Text_Encodings_Web.HtmlEncoder): Rewrap<this, void>;
|
|
1077
|
-
}
|
|
1078
|
-
|
|
1079
|
-
export interface __Ext_Microsoft_AspNetCore_Mvc_ViewFeatures_IAntiforgery {
|
|
1080
|
-
GetHtml(httpContext: Microsoft_AspNetCore_Http.HttpContext): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1081
|
-
}
|
|
1082
|
-
|
|
1083
|
-
export interface __Ext_Microsoft_AspNetCore_Mvc_ViewFeatures_IModelMetadataProvider {
|
|
1084
|
-
GetModelExplorerForType(modelType: System.Type, model: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_ViewFeatures.ModelExplorer>;
|
|
1085
|
-
}
|
|
1086
|
-
|
|
1087
|
-
export interface __Ext_Microsoft_AspNetCore_Mvc_ViewFeatures_IHtmlGenerator {
|
|
1088
|
-
GenerateForm(viewContext: Microsoft_AspNetCore_Mvc_Rendering.ViewContext, actionName: string, controllerName: string, fragment: string, routeValues: unknown, method: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.TagBuilder>;
|
|
1089
|
-
GenerateRouteForm(viewContext: Microsoft_AspNetCore_Mvc_Rendering.ViewContext, routeName: string, routeValues: unknown, fragment: string, method: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.TagBuilder>;
|
|
1090
|
-
}
|
|
1091
|
-
|
|
1092
|
-
export interface __Ext_Microsoft_AspNetCore_Mvc_ViewFeatures_ModelExplorer {
|
|
1093
|
-
GetSimpleDisplayText(): Rewrap<this, string>;
|
|
1094
|
-
}
|
|
1095
|
-
|
|
1096
|
-
export interface __Ext_Microsoft_AspNetCore_RateLimiting_RateLimiterOptions {
|
|
1097
|
-
AddTokenBucketLimiter(policyName: string, configureOptions: System.Action_1<System_Threading_RateLimiting.TokenBucketRateLimiterOptions>): Rewrap<this, Microsoft_AspNetCore_RateLimiting.RateLimiterOptions>;
|
|
1098
|
-
AddFixedWindowLimiter(policyName: string, configureOptions: System.Action_1<System_Threading_RateLimiting.FixedWindowRateLimiterOptions>): Rewrap<this, Microsoft_AspNetCore_RateLimiting.RateLimiterOptions>;
|
|
1099
|
-
AddSlidingWindowLimiter(policyName: string, configureOptions: System.Action_1<System_Threading_RateLimiting.SlidingWindowRateLimiterOptions>): Rewrap<this, Microsoft_AspNetCore_RateLimiting.RateLimiterOptions>;
|
|
1100
|
-
AddConcurrencyLimiter(policyName: string, configureOptions: System.Action_1<System_Threading_RateLimiting.ConcurrencyLimiterOptions>): Rewrap<this, Microsoft_AspNetCore_RateLimiting.RateLimiterOptions>;
|
|
1101
|
-
}
|
|
1102
|
-
|
|
1103
|
-
export interface __Ext_Microsoft_AspNetCore_Razor_Hosting_RazorCompiledItem {
|
|
1104
|
-
GetChecksumMetadata(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Microsoft_AspNetCore_Razor_Hosting.IRazorSourceChecksumMetadata>>;
|
|
1105
|
-
}
|
|
1106
|
-
|
|
1107
|
-
export interface __Ext_Microsoft_AspNetCore_Rewrite_RewriteOptions {
|
|
1108
|
-
AddApacheModRewrite(fileProvider: Microsoft_Extensions_FileProviders.IFileProvider, filePath: string): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1109
|
-
AddApacheModRewrite(reader: System_IO.TextReader): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1110
|
-
AddIISUrlRewrite(fileProvider: Microsoft_Extensions_FileProviders.IFileProvider, filePath: string, alwaysUseManagedServerVariables?: boolean): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1111
|
-
AddIISUrlRewrite(reader: System_IO.TextReader, alwaysUseManagedServerVariables?: boolean): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1112
|
-
Add(rule: Microsoft_AspNetCore_Rewrite.IRule): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1113
|
-
Add(applyRule: System.Action_1<Microsoft_AspNetCore_Rewrite.RewriteContext>): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1114
|
-
AddRewrite(regex: string, replacement: string, skipRemainingRules: boolean): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1115
|
-
AddRedirect(regex: string, replacement: string): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1116
|
-
AddRedirect(regex: string, replacement: string, statusCode: int): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1117
|
-
AddRedirectToHttpsPermanent(): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1118
|
-
AddRedirectToHttps(): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1119
|
-
AddRedirectToHttps(statusCode: int): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1120
|
-
AddRedirectToHttps(statusCode: int, sslPort: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1121
|
-
AddRedirectToWwwPermanent(): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1122
|
-
AddRedirectToWwwPermanent(...domains: string[]): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1123
|
-
AddRedirectToWww(): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1124
|
-
AddRedirectToWww(...domains: string[]): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1125
|
-
AddRedirectToWww(statusCode: int): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1126
|
-
AddRedirectToWww(statusCode: int, ...domains: string[]): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1127
|
-
AddRedirectToNonWwwPermanent(): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1128
|
-
AddRedirectToNonWwwPermanent(...domains: string[]): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1129
|
-
AddRedirectToNonWww(): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1130
|
-
AddRedirectToNonWww(...domains: string[]): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1131
|
-
AddRedirectToNonWww(statusCode: int): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1132
|
-
AddRedirectToNonWww(statusCode: int, ...domains: string[]): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1133
|
-
}
|
|
1134
|
-
|
|
1135
|
-
export interface __Ext_Microsoft_AspNetCore_Routing_HttpContext {
|
|
1136
|
-
GetRouteData(): Rewrap<this, Microsoft_AspNetCore_Routing.RouteData>;
|
|
1137
|
-
GetRouteValue(key: string): Rewrap<this, unknown | undefined>;
|
|
1138
|
-
}
|
|
1139
|
-
|
|
1140
|
-
export interface __Ext_Microsoft_AspNetCore_Routing_IEndpointRouteBuilder {
|
|
1141
|
-
MapIdentityApi<TUser>(): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
1142
|
-
MapShortCircuit(statusCode: int, ...routePrefixes: string[]): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
1143
|
-
}
|
|
1144
|
-
|
|
1145
|
-
export interface __Ext_Microsoft_AspNetCore_Routing_IRouteBuilder {
|
|
1146
|
-
MapRoute(template: string, handler: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1147
|
-
MapMiddlewareRoute(template: string, action: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1148
|
-
MapDelete(template: string, handler: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1149
|
-
MapMiddlewareDelete(template: string, action: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1150
|
-
MapDelete(template: string, handler: System.Func_4<Microsoft_AspNetCore_Http.HttpRequest, Microsoft_AspNetCore_Http.HttpResponse, Microsoft_AspNetCore_Routing.RouteData, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1151
|
-
MapGet(template: string, handler: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1152
|
-
MapMiddlewareGet(template: string, action: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1153
|
-
MapGet(template: string, handler: System.Func_4<Microsoft_AspNetCore_Http.HttpRequest, Microsoft_AspNetCore_Http.HttpResponse, Microsoft_AspNetCore_Routing.RouteData, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1154
|
-
MapPost(template: string, handler: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1155
|
-
MapMiddlewarePost(template: string, action: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1156
|
-
MapPost(template: string, handler: System.Func_4<Microsoft_AspNetCore_Http.HttpRequest, Microsoft_AspNetCore_Http.HttpResponse, Microsoft_AspNetCore_Routing.RouteData, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1157
|
-
MapPut(template: string, handler: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1158
|
-
MapMiddlewarePut(template: string, action: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1159
|
-
MapPut(template: string, handler: System.Func_4<Microsoft_AspNetCore_Http.HttpRequest, Microsoft_AspNetCore_Http.HttpResponse, Microsoft_AspNetCore_Routing.RouteData, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1160
|
-
MapVerb(verb: string, template: string, handler: System.Func_4<Microsoft_AspNetCore_Http.HttpRequest, Microsoft_AspNetCore_Http.HttpResponse, Microsoft_AspNetCore_Routing.RouteData, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1161
|
-
MapVerb(verb: string, template: string, handler: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1162
|
-
MapMiddlewareVerb(verb: string, template: string, action: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1163
|
-
}
|
|
1164
|
-
|
|
1165
|
-
export interface __Ext_Microsoft_AspNetCore_Routing_LinkGenerator {
|
|
1166
|
-
GetPathByAction(httpContext: Microsoft_AspNetCore_Http.HttpContext, action?: string, controller?: string, values?: unknown, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1167
|
-
GetPathByAction(action: string, controller: string, values?: unknown, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1168
|
-
GetUriByAction(httpContext: Microsoft_AspNetCore_Http.HttpContext, action?: string, controller?: string, values?: unknown, scheme?: string, host?: System.Nullable_1<Microsoft_AspNetCore_Http.HostString>, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1169
|
-
GetUriByAction(action: string, controller: string, values: unknown, scheme: string, host: Microsoft_AspNetCore_Http.HostString, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1170
|
-
GetPathByPage(httpContext: Microsoft_AspNetCore_Http.HttpContext, page?: string, handler?: string, values?: unknown, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1171
|
-
GetPathByPage(page: string, handler?: string, values?: unknown, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1172
|
-
GetUriByPage(httpContext: Microsoft_AspNetCore_Http.HttpContext, page?: string, handler?: string, values?: unknown, scheme?: string, host?: System.Nullable_1<Microsoft_AspNetCore_Http.HostString>, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1173
|
-
GetUriByPage(page: string, handler: string, values: unknown, scheme: string, host: Microsoft_AspNetCore_Http.HostString, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1174
|
-
GetPathByName(httpContext: Microsoft_AspNetCore_Http.HttpContext, endpointName: string, values: unknown, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1175
|
-
GetPathByName(httpContext: Microsoft_AspNetCore_Http.HttpContext, endpointName: string, values?: Microsoft_AspNetCore_Routing.RouteValueDictionary, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1176
|
-
GetPathByName(endpointName: string, values: unknown, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1177
|
-
GetPathByName(endpointName: string, values?: Microsoft_AspNetCore_Routing.RouteValueDictionary, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1178
|
-
GetUriByName(httpContext: Microsoft_AspNetCore_Http.HttpContext, endpointName: string, values: unknown, scheme?: string, host?: System.Nullable_1<Microsoft_AspNetCore_Http.HostString>, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1179
|
-
GetUriByName(httpContext: Microsoft_AspNetCore_Http.HttpContext, endpointName: string, values?: Microsoft_AspNetCore_Routing.RouteValueDictionary, scheme?: string, host?: System.Nullable_1<Microsoft_AspNetCore_Http.HostString>, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1180
|
-
GetUriByName(endpointName: string, values: unknown, scheme: string, host: Microsoft_AspNetCore_Http.HostString, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1181
|
-
GetUriByName(endpointName: string, values: Microsoft_AspNetCore_Routing.RouteValueDictionary, scheme: string, host: Microsoft_AspNetCore_Http.HostString, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1182
|
-
GetPathByRouteValues(httpContext: Microsoft_AspNetCore_Http.HttpContext, routeName: string, values: unknown, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1183
|
-
GetPathByRouteValues(httpContext: Microsoft_AspNetCore_Http.HttpContext, routeName: string, values?: Microsoft_AspNetCore_Routing.RouteValueDictionary, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1184
|
-
GetPathByRouteValues(routeName: string, values: unknown, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1185
|
-
GetPathByRouteValues(routeName: string, values?: Microsoft_AspNetCore_Routing.RouteValueDictionary, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1186
|
-
GetUriByRouteValues(httpContext: Microsoft_AspNetCore_Http.HttpContext, routeName: string, values: unknown, scheme?: string, host?: System.Nullable_1<Microsoft_AspNetCore_Http.HostString>, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1187
|
-
GetUriByRouteValues(httpContext: Microsoft_AspNetCore_Http.HttpContext, routeName: string, values?: Microsoft_AspNetCore_Routing.RouteValueDictionary, scheme?: string, host?: System.Nullable_1<Microsoft_AspNetCore_Http.HostString>, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1188
|
-
GetUriByRouteValues(routeName: string, values: unknown, scheme: string, host: Microsoft_AspNetCore_Http.HostString, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1189
|
-
GetUriByRouteValues(routeName: string, values: Microsoft_AspNetCore_Routing.RouteValueDictionary, scheme: string, host: Microsoft_AspNetCore_Http.HostString, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1190
|
-
}
|
|
1191
|
-
|
|
1192
|
-
export interface __Ext_Microsoft_AspNetCore_Routing_LinkParser {
|
|
1193
|
-
ParsePathByEndpointName(endpointName: string, path: Microsoft_AspNetCore_Http.PathString): Rewrap<this, Microsoft_AspNetCore_Routing.RouteValueDictionary | undefined>;
|
|
1194
|
-
}
|
|
1195
|
-
|
|
1196
|
-
export interface __Ext_Microsoft_AspNetCore_Server_IIS_HttpContext {
|
|
1197
|
-
GetIISServerVariable(variableName: string): Rewrap<this, string | undefined>;
|
|
1198
|
-
}
|
|
1199
|
-
|
|
1200
|
-
export interface __Ext_Microsoft_AspNetCore_SignalR_IConnectionBuilder {
|
|
1201
|
-
UseHub<THub>(): Rewrap<this, Microsoft_AspNetCore_Connections.IConnectionBuilder>;
|
|
1202
|
-
}
|
|
1203
|
-
|
|
1204
|
-
export interface __Ext_Microsoft_AspNetCore_SignalR_HubCallerContext {
|
|
1205
|
-
GetHttpContext(): Rewrap<this, Microsoft_AspNetCore_Http.HttpContext | undefined>;
|
|
1206
|
-
}
|
|
1207
|
-
|
|
1208
|
-
export interface __Ext_Microsoft_AspNetCore_SignalR_HubConnectionContext {
|
|
1209
|
-
GetHttpContext(): Rewrap<this, Microsoft_AspNetCore_Http.HttpContext | undefined>;
|
|
1210
|
-
}
|
|
1211
|
-
|
|
1212
|
-
export interface __Ext_Microsoft_AspNetCore_SignalR_HubOptions {
|
|
1213
|
-
AddFilter(hubFilter: Microsoft_AspNetCore_SignalR.IHubFilter): Rewrap<this, void>;
|
|
1214
|
-
AddFilter<TFilter>(): Rewrap<this, void>;
|
|
1215
|
-
AddFilter(filterType: System.Type): Rewrap<this, void>;
|
|
1216
|
-
}
|
|
1217
|
-
|
|
1218
|
-
export interface __Ext_Microsoft_AspNetCore_SignalR_IClientProxy {
|
|
1219
|
-
SendAsync(method: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1220
|
-
SendAsync(method: string, arg1: unknown, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1221
|
-
SendAsync(method: string, arg1: unknown, arg2: unknown, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1222
|
-
SendAsync(method: string, arg1: unknown, arg2: unknown, arg3: unknown, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1223
|
-
SendAsync(method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1224
|
-
SendAsync(method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1225
|
-
SendAsync(method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, arg6: unknown, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1226
|
-
SendAsync(method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, arg6: unknown, arg7: unknown, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1227
|
-
SendAsync(method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, arg6: unknown, arg7: unknown, arg8: unknown, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1228
|
-
SendAsync(method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, arg6: unknown, arg7: unknown, arg8: unknown, arg9: unknown, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1229
|
-
SendAsync(method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, arg6: unknown, arg7: unknown, arg8: unknown, arg9: unknown, arg10: unknown, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1230
|
-
}
|
|
1231
|
-
|
|
1232
|
-
export interface __Ext_Microsoft_AspNetCore_SignalR_IHubClients_1<T> {
|
|
1233
|
-
AllExcept(excludedConnectionId1: string): Rewrap<this, T>;
|
|
1234
|
-
AllExcept(excludedConnectionId1: string, excludedConnectionId2: string): Rewrap<this, T>;
|
|
1235
|
-
AllExcept(excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string): Rewrap<this, T>;
|
|
1236
|
-
AllExcept(excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string, excludedConnectionId4: string): Rewrap<this, T>;
|
|
1237
|
-
AllExcept(excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string, excludedConnectionId4: string, excludedConnectionId5: string): Rewrap<this, T>;
|
|
1238
|
-
AllExcept(excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string, excludedConnectionId4: string, excludedConnectionId5: string, excludedConnectionId6: string): Rewrap<this, T>;
|
|
1239
|
-
AllExcept(excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string, excludedConnectionId4: string, excludedConnectionId5: string, excludedConnectionId6: string, excludedConnectionId7: string): Rewrap<this, T>;
|
|
1240
|
-
AllExcept(excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string, excludedConnectionId4: string, excludedConnectionId5: string, excludedConnectionId6: string, excludedConnectionId7: string, excludedConnectionId8: string): Rewrap<this, T>;
|
|
1241
|
-
AllExcept(excludedConnectionIds: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, T>;
|
|
1242
|
-
Clients(connection1: string): Rewrap<this, T>;
|
|
1243
|
-
Clients(connection1: string, connection2: string): Rewrap<this, T>;
|
|
1244
|
-
Clients(connection1: string, connection2: string, connection3: string): Rewrap<this, T>;
|
|
1245
|
-
Clients(connection1: string, connection2: string, connection3: string, connection4: string): Rewrap<this, T>;
|
|
1246
|
-
Clients(connection1: string, connection2: string, connection3: string, connection4: string, connection5: string): Rewrap<this, T>;
|
|
1247
|
-
Clients(connection1: string, connection2: string, connection3: string, connection4: string, connection5: string, connection6: string): Rewrap<this, T>;
|
|
1248
|
-
Clients(connection1: string, connection2: string, connection3: string, connection4: string, connection5: string, connection6: string, connection7: string): Rewrap<this, T>;
|
|
1249
|
-
Clients(connection1: string, connection2: string, connection3: string, connection4: string, connection5: string, connection6: string, connection7: string, connection8: string): Rewrap<this, T>;
|
|
1250
|
-
Clients(connectionIds: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, T>;
|
|
1251
|
-
Groups(group1: string): Rewrap<this, T>;
|
|
1252
|
-
Groups(group1: string, group2: string): Rewrap<this, T>;
|
|
1253
|
-
Groups(group1: string, group2: string, group3: string): Rewrap<this, T>;
|
|
1254
|
-
Groups(group1: string, group2: string, group3: string, group4: string): Rewrap<this, T>;
|
|
1255
|
-
Groups(group1: string, group2: string, group3: string, group4: string, group5: string): Rewrap<this, T>;
|
|
1256
|
-
Groups(group1: string, group2: string, group3: string, group4: string, group5: string, group6: string): Rewrap<this, T>;
|
|
1257
|
-
Groups(group1: string, group2: string, group3: string, group4: string, group5: string, group6: string, group7: string): Rewrap<this, T>;
|
|
1258
|
-
Groups(group1: string, group2: string, group3: string, group4: string, group5: string, group6: string, group7: string, group8: string): Rewrap<this, T>;
|
|
1259
|
-
Groups(groupNames: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, T>;
|
|
1260
|
-
GroupExcept(groupName: string, excludedConnectionId1: string): Rewrap<this, T>;
|
|
1261
|
-
GroupExcept(groupName: string, excludedConnectionId1: string, excludedConnectionId2: string): Rewrap<this, T>;
|
|
1262
|
-
GroupExcept(groupName: string, excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string): Rewrap<this, T>;
|
|
1263
|
-
GroupExcept(groupName: string, excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string, excludedConnectionId4: string): Rewrap<this, T>;
|
|
1264
|
-
GroupExcept(groupName: string, excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string, excludedConnectionId4: string, excludedConnectionId5: string): Rewrap<this, T>;
|
|
1265
|
-
GroupExcept(groupName: string, excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string, excludedConnectionId4: string, excludedConnectionId5: string, excludedConnectionId6: string): Rewrap<this, T>;
|
|
1266
|
-
GroupExcept(groupName: string, excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string, excludedConnectionId4: string, excludedConnectionId5: string, excludedConnectionId6: string, excludedConnectionId7: string): Rewrap<this, T>;
|
|
1267
|
-
GroupExcept(groupName: string, excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string, excludedConnectionId4: string, excludedConnectionId5: string, excludedConnectionId6: string, excludedConnectionId7: string, excludedConnectionId8: string): Rewrap<this, T>;
|
|
1268
|
-
GroupExcept(groupName: string, excludedConnectionIds: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, T>;
|
|
1269
|
-
Users(user1: string): Rewrap<this, T>;
|
|
1270
|
-
Users(user1: string, user2: string): Rewrap<this, T>;
|
|
1271
|
-
Users(user1: string, user2: string, user3: string): Rewrap<this, T>;
|
|
1272
|
-
Users(user1: string, user2: string, user3: string, user4: string): Rewrap<this, T>;
|
|
1273
|
-
Users(user1: string, user2: string, user3: string, user4: string, user5: string): Rewrap<this, T>;
|
|
1274
|
-
Users(user1: string, user2: string, user3: string, user4: string, user5: string, user6: string): Rewrap<this, T>;
|
|
1275
|
-
Users(user1: string, user2: string, user3: string, user4: string, user5: string, user6: string, user7: string): Rewrap<this, T>;
|
|
1276
|
-
Users(user1: string, user2: string, user3: string, user4: string, user5: string, user6: string, user7: string, user8: string): Rewrap<this, T>;
|
|
1277
|
-
Users(userIds: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, T>;
|
|
1278
|
-
}
|
|
1279
|
-
|
|
1280
|
-
export interface __Ext_Microsoft_AspNetCore_SignalR_ISingleClientProxy {
|
|
1281
|
-
InvokeAsync<T>(method: string, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1282
|
-
InvokeAsync<T>(method: string, arg1: unknown, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1283
|
-
InvokeAsync<T>(method: string, arg1: unknown, arg2: unknown, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1284
|
-
InvokeAsync<T>(method: string, arg1: unknown, arg2: unknown, arg3: unknown, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1285
|
-
InvokeAsync<T>(method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1286
|
-
InvokeAsync<T>(method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1287
|
-
InvokeAsync<T>(method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, arg6: unknown, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1288
|
-
InvokeAsync<T>(method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, arg6: unknown, arg7: unknown, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1289
|
-
InvokeAsync<T>(method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, arg6: unknown, arg7: unknown, arg8: unknown, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1290
|
-
InvokeAsync<T>(method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, arg6: unknown, arg7: unknown, arg8: unknown, arg9: unknown, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1291
|
-
InvokeAsync<T>(method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, arg6: unknown, arg7: unknown, arg8: unknown, arg9: unknown, arg10: unknown, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1292
|
-
}
|
|
1293
|
-
|
|
1294
|
-
export interface __Ext_Microsoft_AspNetCore_SignalR_Protocol_IHubProtocol {
|
|
1295
|
-
GetMessageBytes(message: Microsoft_AspNetCore_SignalR_Protocol.HubMessage): Rewrap<this, byte[]>;
|
|
1296
|
-
}
|
|
1297
|
-
|
|
1298
|
-
export interface __Ext_Microsoft_AspNetCore_WebSockets_IServiceCollection {
|
|
1299
|
-
AddWebSockets(configure: System.Action_1<Microsoft_AspNetCore_Builder.WebSocketOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1300
|
-
}
|
|
1301
|
-
|
|
1302
|
-
export interface __Ext_Microsoft_AspNetCore_WebUtilities_MultipartSection {
|
|
1303
|
-
AsFileSection(): Rewrap<this, Microsoft_AspNetCore_WebUtilities.FileMultipartSection | undefined>;
|
|
1304
|
-
AsFormDataSection(): Rewrap<this, Microsoft_AspNetCore_WebUtilities.FormMultipartSection | undefined>;
|
|
1305
|
-
GetContentDispositionHeader(): Rewrap<this, Microsoft_Net_Http_Headers.ContentDispositionHeaderValue | undefined>;
|
|
1306
|
-
ReadAsStringAsync(): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.String>>;
|
|
1307
|
-
ReadAsStringAsync(cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<System_Internal.String>>;
|
|
1308
|
-
}
|
|
1309
|
-
|
|
1310
|
-
export interface __Ext_Microsoft_AspNetCore_WebUtilities_Stream {
|
|
1311
|
-
DrainAsync(cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1312
|
-
DrainAsync(limit: System.Nullable_1<System_Internal.Int64>, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1313
|
-
DrainAsync(bytePool: System_Buffers.ArrayPool_1<System_Internal.Byte>, limit: System.Nullable_1<System_Internal.Int64>, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1314
|
-
}
|
|
1315
|
-
|
|
1316
|
-
export interface __Ext_Microsoft_Extensions_DependencyInjection_AuthenticationBuilder {
|
|
1317
|
-
AddBearerToken(): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1318
|
-
AddBearerToken(authenticationScheme: string): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1319
|
-
AddBearerToken(configure: System.Action_1<Microsoft_AspNetCore_Authentication_BearerToken.BearerTokenOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1320
|
-
AddBearerToken(authenticationScheme: string, configure: System.Action_1<Microsoft_AspNetCore_Authentication_BearerToken.BearerTokenOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1321
|
-
AddCookie(): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1322
|
-
AddCookie(authenticationScheme: string): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1323
|
-
AddCookie(configureOptions: System.Action_1<Microsoft_AspNetCore_Authentication_Cookies.CookieAuthenticationOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1324
|
-
AddCookie(authenticationScheme: string, configureOptions: System.Action_1<Microsoft_AspNetCore_Authentication_Cookies.CookieAuthenticationOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1325
|
-
AddCookie(authenticationScheme: string, displayName: string, configureOptions: System.Action_1<Microsoft_AspNetCore_Authentication_Cookies.CookieAuthenticationOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1326
|
-
AddOAuth(authenticationScheme: string, configureOptions: System.Action_1<Microsoft_AspNetCore_Authentication_OAuth.OAuthOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1327
|
-
AddOAuth(authenticationScheme: string, displayName: string, configureOptions: System.Action_1<Microsoft_AspNetCore_Authentication_OAuth.OAuthOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1328
|
-
AddOAuth<TOptions, THandler>(authenticationScheme: string, configureOptions: System.Action_1<TOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1329
|
-
AddOAuth<TOptions, THandler>(authenticationScheme: string, displayName: string, configureOptions: System.Action_1<TOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1330
|
-
}
|
|
1331
|
-
|
|
1332
|
-
export interface __Ext_Microsoft_Extensions_DependencyInjection_PageConventionCollection {
|
|
1333
|
-
ConfigureFilter(factory: System.Func_2<Microsoft_AspNetCore_Mvc_ApplicationModels.PageApplicationModel, Microsoft_AspNetCore_Mvc_Filters.IFilterMetadata>): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.IPageApplicationModelConvention>;
|
|
1334
|
-
ConfigureFilter(filter: Microsoft_AspNetCore_Mvc_Filters.IFilterMetadata): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1335
|
-
Add(convention: Microsoft_AspNetCore_Mvc_ApplicationModels.IParameterModelBaseConvention): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1336
|
-
AllowAnonymousToPage(pageName: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1337
|
-
AllowAnonymousToAreaPage(areaName: string, pageName: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1338
|
-
AllowAnonymousToFolder(folderPath: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1339
|
-
AllowAnonymousToAreaFolder(areaName: string, folderPath: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1340
|
-
AuthorizePage(pageName: string, policy: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1341
|
-
AuthorizePage(pageName: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1342
|
-
AuthorizeAreaPage(areaName: string, pageName: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1343
|
-
AuthorizeAreaPage(areaName: string, pageName: string, policy: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1344
|
-
AuthorizeFolder(folderPath: string, policy: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1345
|
-
AuthorizeFolder(folderPath: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1346
|
-
AuthorizeAreaFolder(areaName: string, folderPath: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1347
|
-
AuthorizeAreaFolder(areaName: string, folderPath: string, policy: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1348
|
-
AddPageRoute(pageName: string, route: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1349
|
-
AddAreaPageRoute(areaName: string, pageName: string, route: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1350
|
-
}
|
|
1351
|
-
|
|
1352
|
-
export interface __Ext_Microsoft_Extensions_DependencyInjection_ISignalRServerBuilder {
|
|
1353
|
-
AddHubOptions<THub>(configure: System.Action_1<Microsoft_AspNetCore_SignalR.HubOptions_1<THub>>): Rewrap<this, Microsoft_AspNetCore_SignalR.ISignalRServerBuilder>;
|
|
1354
|
-
}
|
|
1355
|
-
|
|
1356
|
-
export interface __Ext_Microsoft_Extensions_DependencyInjection_IMvcBuilder {
|
|
1357
|
-
AddMvcOptions(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.MvcOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1358
|
-
AddJsonOptions(configure: System.Action_1<Microsoft_AspNetCore_Mvc.JsonOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1359
|
-
AddFormatterMappings(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Formatters.FormatterMappings>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1360
|
-
AddApplicationPart(assembly: System_Reflection.Assembly): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1361
|
-
ConfigureApplicationPartManager(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_ApplicationParts.ApplicationPartManager>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1362
|
-
AddControllersAsServices(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1363
|
-
SetCompatibilityVersion(version: Microsoft_AspNetCore_Mvc.CompatibilityVersion): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1364
|
-
ConfigureApiBehaviorOptions(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.ApiBehaviorOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1365
|
-
AddDataAnnotationsLocalization(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1366
|
-
AddDataAnnotationsLocalization(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_DataAnnotations.MvcDataAnnotationsLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1367
|
-
AddXmlOptions(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Formatters_Xml.MvcXmlOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1368
|
-
AddXmlDataContractSerializerFormatters(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1369
|
-
AddXmlDataContractSerializerFormatters(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Formatters_Xml.MvcXmlOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1370
|
-
AddXmlSerializerFormatters(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1371
|
-
AddXmlSerializerFormatters(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Formatters_Xml.MvcXmlOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1372
|
-
AddViewLocalization(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1373
|
-
AddViewLocalization(format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1374
|
-
AddViewLocalization(setupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1375
|
-
AddViewLocalization(format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat, setupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1376
|
-
AddMvcLocalization(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1377
|
-
AddMvcLocalization(localizationOptionsSetupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1378
|
-
AddMvcLocalization(format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1379
|
-
AddMvcLocalization(localizationOptionsSetupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>, format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1380
|
-
AddMvcLocalization(dataAnnotationsLocalizationOptionsSetupAction: System.Action_1<Microsoft_AspNetCore_Mvc_DataAnnotations.MvcDataAnnotationsLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1381
|
-
AddMvcLocalization(localizationOptionsSetupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>, dataAnnotationsLocalizationOptionsSetupAction: System.Action_1<Microsoft_AspNetCore_Mvc_DataAnnotations.MvcDataAnnotationsLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1382
|
-
AddMvcLocalization(format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat, dataAnnotationsLocalizationOptionsSetupAction: System.Action_1<Microsoft_AspNetCore_Mvc_DataAnnotations.MvcDataAnnotationsLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1383
|
-
AddMvcLocalization(localizationOptionsSetupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>, format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat, dataAnnotationsLocalizationOptionsSetupAction: System.Action_1<Microsoft_AspNetCore_Mvc_DataAnnotations.MvcDataAnnotationsLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1384
|
-
AddRazorOptions(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Razor.RazorViewEngineOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1385
|
-
AddTagHelpersAsServices(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1386
|
-
InitializeTagHelper<TTagHelper>(initialize: System.Action_2<TTagHelper, Microsoft_AspNetCore_Mvc_Rendering.ViewContext>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1387
|
-
AddRazorPagesOptions(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_RazorPages.RazorPagesOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1388
|
-
WithRazorPagesRoot(rootDirectory: string): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1389
|
-
WithRazorPagesAtContentRoot(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1390
|
-
AddCacheTagHelperLimits(configure: System.Action_1<Microsoft_AspNetCore_Mvc_TagHelpers.CacheTagHelperOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1391
|
-
AddViewOptions(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.MvcViewOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1392
|
-
AddViewComponentsAsServices(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1393
|
-
AddSessionStateTempDataProvider(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1394
|
-
AddCookieTempDataProvider(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1395
|
-
AddCookieTempDataProvider(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.CookieTempDataProviderOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1396
|
-
}
|
|
1397
|
-
|
|
1398
|
-
export interface __Ext_Microsoft_Extensions_DependencyInjection_IMvcCoreBuilder {
|
|
1399
|
-
AddApiExplorer(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1400
|
-
AddMvcOptions(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.MvcOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1401
|
-
AddJsonOptions(configure: System.Action_1<Microsoft_AspNetCore_Mvc.JsonOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1402
|
-
AddFormatterMappings(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1403
|
-
AddFormatterMappings(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Formatters.FormatterMappings>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1404
|
-
AddAuthorization(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1405
|
-
AddAuthorization(setupAction: System.Action_1<Microsoft_AspNetCore_Authorization.AuthorizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1406
|
-
AddControllersAsServices(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1407
|
-
AddApplicationPart(assembly: System_Reflection.Assembly): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1408
|
-
ConfigureApplicationPartManager(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_ApplicationParts.ApplicationPartManager>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1409
|
-
ConfigureApiBehaviorOptions(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.ApiBehaviorOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1410
|
-
SetCompatibilityVersion(version: Microsoft_AspNetCore_Mvc.CompatibilityVersion): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1411
|
-
AddCors(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1412
|
-
AddCors(setupAction: System.Action_1<Microsoft_AspNetCore_Cors_Infrastructure.CorsOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1413
|
-
ConfigureCors(setupAction: System.Action_1<Microsoft_AspNetCore_Cors_Infrastructure.CorsOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1414
|
-
AddDataAnnotations(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1415
|
-
AddDataAnnotationsLocalization(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1416
|
-
AddDataAnnotationsLocalization(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_DataAnnotations.MvcDataAnnotationsLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1417
|
-
AddXmlOptions(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Formatters_Xml.MvcXmlOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1418
|
-
AddXmlDataContractSerializerFormatters(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1419
|
-
AddXmlDataContractSerializerFormatters(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Formatters_Xml.MvcXmlOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1420
|
-
AddXmlSerializerFormatters(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1421
|
-
AddXmlSerializerFormatters(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Formatters_Xml.MvcXmlOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1422
|
-
AddViewLocalization(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1423
|
-
AddViewLocalization(format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1424
|
-
AddViewLocalization(setupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1425
|
-
AddViewLocalization(format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat, setupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1426
|
-
AddMvcLocalization(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1427
|
-
AddMvcLocalization(localizationOptionsSetupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1428
|
-
AddMvcLocalization(format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1429
|
-
AddMvcLocalization(localizationOptionsSetupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>, format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1430
|
-
AddMvcLocalization(dataAnnotationsLocalizationOptionsSetupAction: System.Action_1<Microsoft_AspNetCore_Mvc_DataAnnotations.MvcDataAnnotationsLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1431
|
-
AddMvcLocalization(localizationOptionsSetupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>, dataAnnotationsLocalizationOptionsSetupAction: System.Action_1<Microsoft_AspNetCore_Mvc_DataAnnotations.MvcDataAnnotationsLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1432
|
-
AddMvcLocalization(format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat, dataAnnotationsLocalizationOptionsSetupAction: System.Action_1<Microsoft_AspNetCore_Mvc_DataAnnotations.MvcDataAnnotationsLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1433
|
-
AddMvcLocalization(localizationOptionsSetupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>, format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat, dataAnnotationsLocalizationOptionsSetupAction: System.Action_1<Microsoft_AspNetCore_Mvc_DataAnnotations.MvcDataAnnotationsLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1434
|
-
AddRazorViewEngine(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1435
|
-
AddRazorViewEngine(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Razor.RazorViewEngineOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1436
|
-
AddTagHelpersAsServices(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1437
|
-
InitializeTagHelper<TTagHelper>(initialize: System.Action_2<TTagHelper, Microsoft_AspNetCore_Mvc_Rendering.ViewContext>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1438
|
-
AddRazorPages(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1439
|
-
AddRazorPages(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_RazorPages.RazorPagesOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1440
|
-
WithRazorPagesRoot(rootDirectory: string): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1441
|
-
AddCacheTagHelper(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1442
|
-
AddCacheTagHelperLimits(configure: System.Action_1<Microsoft_AspNetCore_Mvc_TagHelpers.CacheTagHelperOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1443
|
-
AddViews(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1444
|
-
AddCookieTempDataProvider(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1445
|
-
AddViews(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.MvcViewOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1446
|
-
AddCookieTempDataProvider(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.CookieTempDataProviderOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1447
|
-
ConfigureViews(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.MvcViewOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1448
|
-
}
|
|
1449
|
-
|
|
1450
|
-
export interface __Ext_Microsoft_Extensions_DependencyInjection_IRazorComponentsBuilder {
|
|
1451
|
-
RegisterPersistentService<TPersistentService>(renderMode: Microsoft_AspNetCore_Components.IComponentRenderMode): Rewrap<this, Microsoft_Extensions_DependencyInjection.IRazorComponentsBuilder>;
|
|
1452
|
-
AddInteractiveServerComponents(configure?: System.Action_1<Microsoft_AspNetCore_Components_Server.CircuitOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServerSideBlazorBuilder>;
|
|
1453
|
-
}
|
|
1454
|
-
|
|
1455
|
-
export interface __Ext_Microsoft_Extensions_DependencyInjection_IServerSideBlazorBuilder {
|
|
1456
|
-
AddCircuitOptions(configure: System.Action_1<Microsoft_AspNetCore_Components_Server.CircuitOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServerSideBlazorBuilder>;
|
|
1457
|
-
AddHubOptions(configure: System.Action_1<Microsoft_AspNetCore_SignalR.HubOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServerSideBlazorBuilder>;
|
|
1458
|
-
}
|
|
1459
|
-
|
|
1460
|
-
export interface __Ext_Microsoft_Extensions_DependencyInjection_IServiceCollection {
|
|
1461
|
-
AddAntiforgery(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1462
|
-
AddAntiforgery(setupAction: System.Action_1<Microsoft_AspNetCore_Antiforgery.AntiforgeryOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1463
|
-
AddAuthentication(): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1464
|
-
AddAuthentication(defaultScheme: string): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1465
|
-
AddAuthentication(configureOptions: System.Action_1<Microsoft_AspNetCore_Authentication.AuthenticationOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1466
|
-
AddAuthenticationCore(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1467
|
-
AddAuthenticationCore(configureOptions: System.Action_1<Microsoft_AspNetCore_Authentication.AuthenticationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1468
|
-
AddAuthorizationCore(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1469
|
-
AddAuthorizationCore(configure: System.Action_1<Microsoft_AspNetCore_Authorization.AuthorizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1470
|
-
AddAuthorizationBuilder(): Rewrap<this, Microsoft_AspNetCore_Authorization.AuthorizationBuilder>;
|
|
1471
|
-
AddAuthorizationPolicyEvaluator(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1472
|
-
AddAuthorization(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1473
|
-
AddAuthorization(configure: System.Action_1<Microsoft_AspNetCore_Authorization.AuthorizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1474
|
-
AddCascadingValue<TValue>(initialValueFactory: System.Func_2<System.IServiceProvider, TValue>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1475
|
-
AddCascadingValue<TValue>(name: string, initialValueFactory: System.Func_2<System.IServiceProvider, TValue>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1476
|
-
TryAddCascadingValue<TValue>(valueFactory: System.Func_2<System.IServiceProvider, TValue>): Rewrap<this, void>;
|
|
1477
|
-
TryAddCascadingValue<TValue>(name: string, valueFactory: System.Func_2<System.IServiceProvider, TValue>): Rewrap<this, void>;
|
|
1478
|
-
AddCascadingAuthenticationState(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1479
|
-
AddRazorComponents(configure?: System.Action_1<Microsoft_AspNetCore_Components_Endpoints.RazorComponentsServiceOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IRazorComponentsBuilder>;
|
|
1480
|
-
AddServerSideBlazor(configure?: System.Action_1<Microsoft_AspNetCore_Components_Server.CircuitOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServerSideBlazorBuilder>;
|
|
1481
|
-
AddCookiePolicy(configureOptions: System.Action_1<Microsoft_AspNetCore_Builder.CookiePolicyOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1482
|
-
AddCookiePolicy<TService>(configureOptions: System.Action_2<Microsoft_AspNetCore_Builder.CookiePolicyOptions, TService>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1483
|
-
AddCors(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1484
|
-
AddCors(setupAction: System.Action_1<Microsoft_AspNetCore_Cors_Infrastructure.CorsOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1485
|
-
AddDataProtection(): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
1486
|
-
AddDataProtection(setupAction: System.Action_1<Microsoft_AspNetCore_DataProtection.DataProtectionOptions>): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
1487
|
-
AddExceptionHandler(configureOptions: System.Action_1<Microsoft_AspNetCore_Builder.ExceptionHandlerOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1488
|
-
AddExceptionHandler<TService>(configureOptions: System.Action_2<Microsoft_AspNetCore_Builder.ExceptionHandlerOptions, TService>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1489
|
-
AddExceptionHandler<T>(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1490
|
-
AddHttpContextAccessor(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1491
|
-
AddRequestTimeouts(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1492
|
-
AddRequestTimeouts(configure: System.Action_1<Microsoft_AspNetCore_Http_Timeouts.RequestTimeoutOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1493
|
-
AddConnections(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1494
|
-
AddConnections(options: System.Action_1<Microsoft_AspNetCore_Http_Connections.ConnectionOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1495
|
-
ConfigureHttpJsonOptions(configureOptions: System.Action_1<Microsoft_AspNetCore_Http_Json.JsonOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1496
|
-
AddProblemDetails(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1497
|
-
AddProblemDetails(configure: System.Action_1<Microsoft_AspNetCore_Http.ProblemDetailsOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1498
|
-
AddHttpLogging(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1499
|
-
AddHttpLogging(configureOptions: System.Action_1<Microsoft_AspNetCore_HttpLogging.HttpLoggingOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1500
|
-
AddHttpLoggingInterceptor<T>(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1501
|
-
AddW3CLogging(configureOptions: System.Action_1<Microsoft_AspNetCore_HttpLogging.W3CLoggerOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1502
|
-
AddCertificateForwarding(configure: System.Action_1<Microsoft_AspNetCore_HttpOverrides.CertificateForwardingOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1503
|
-
AddIdentity<TUser, TRole>(): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityBuilder>;
|
|
1504
|
-
AddIdentity<TUser, TRole>(setupAction: System.Action_1<Microsoft_AspNetCore_Identity.IdentityOptions>): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityBuilder>;
|
|
1505
|
-
AddIdentityApiEndpoints<TUser>(): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityBuilder>;
|
|
1506
|
-
AddIdentityApiEndpoints<TUser>(configure: System.Action_1<Microsoft_AspNetCore_Identity.IdentityOptions>): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityBuilder>;
|
|
1507
|
-
ConfigureApplicationCookie(configure: System.Action_1<Microsoft_AspNetCore_Authentication_Cookies.CookieAuthenticationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1508
|
-
ConfigureExternalCookie(configure: System.Action_1<Microsoft_AspNetCore_Authentication_Cookies.CookieAuthenticationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1509
|
-
AddRequestLocalization(configureOptions: System.Action_1<Microsoft_AspNetCore_Builder.RequestLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1510
|
-
AddRequestLocalization<TService>(configureOptions: System.Action_2<Microsoft_AspNetCore_Builder.RequestLocalizationOptions, TService>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1511
|
-
AddMvc(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1512
|
-
AddMvc(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.MvcOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1513
|
-
AddControllers(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1514
|
-
AddControllers(configure: System.Action_1<Microsoft_AspNetCore_Mvc.MvcOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1515
|
-
AddControllersWithViews(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1516
|
-
AddControllersWithViews(configure: System.Action_1<Microsoft_AspNetCore_Mvc.MvcOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1517
|
-
AddRazorPages(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1518
|
-
AddRazorPages(configure: System.Action_1<Microsoft_AspNetCore_Mvc_RazorPages.RazorPagesOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1519
|
-
AddEndpointsApiExplorer(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1520
|
-
AddMvcCore(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1521
|
-
AddMvcCore(setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.MvcOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1522
|
-
AddOutputCache(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1523
|
-
AddOutputCache(configureOptions: System.Action_1<Microsoft_AspNetCore_OutputCaching.OutputCacheOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1524
|
-
AddRequestDecompression(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1525
|
-
AddRequestDecompression(configureOptions: System.Action_1<Microsoft_AspNetCore_RequestDecompression.RequestDecompressionOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1526
|
-
AddResponseCaching(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1527
|
-
AddResponseCaching(configureOptions: System.Action_1<Microsoft_AspNetCore_ResponseCaching.ResponseCachingOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1528
|
-
AddRouting(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1529
|
-
AddRoutingCore(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1530
|
-
AddRouting(configureOptions: System.Action_1<Microsoft_AspNetCore_Routing.RouteOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1531
|
-
AddSession(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1532
|
-
AddSession(configure: System.Action_1<Microsoft_AspNetCore_Builder.SessionOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1533
|
-
AddSignalR(): Rewrap<this, Microsoft_AspNetCore_SignalR.ISignalRServerBuilder>;
|
|
1534
|
-
AddSignalR(configure: System.Action_1<Microsoft_AspNetCore_SignalR.HubOptions>): Rewrap<this, Microsoft_AspNetCore_SignalR.ISignalRServerBuilder>;
|
|
1535
|
-
AddSignalRCore(): Rewrap<this, Microsoft_AspNetCore_SignalR.ISignalRServerBuilder>;
|
|
1536
|
-
AddDirectoryBrowser(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1537
|
-
AddIdentityCore<TUser>(): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityBuilder>;
|
|
1538
|
-
AddIdentityCore<TUser>(setupAction: System.Action_1<Microsoft_AspNetCore_Identity.IdentityOptions>): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityBuilder>;
|
|
1539
|
-
}
|
|
1540
|
-
|
|
1541
|
-
export interface __Ext_Microsoft_Extensions_DependencyInjection_IList_1<T> {
|
|
1542
|
-
RemoveType<TApplicationModelConvention>(): Rewrap<this, void>;
|
|
1543
|
-
RemoveType(type: System.Type): Rewrap<this, void>;
|
|
1544
|
-
Add(controllerModelConvention: Microsoft_AspNetCore_Mvc_ApplicationModels.IControllerModelConvention): Rewrap<this, void>;
|
|
1545
|
-
Add(actionModelConvention: Microsoft_AspNetCore_Mvc_ApplicationModels.IActionModelConvention): Rewrap<this, void>;
|
|
1546
|
-
Add(parameterModelConvention: Microsoft_AspNetCore_Mvc_ApplicationModels.IParameterModelConvention): Rewrap<this, void>;
|
|
1547
|
-
Add(parameterModelConvention: Microsoft_AspNetCore_Mvc_ApplicationModels.IParameterModelBaseConvention): Rewrap<this, void>;
|
|
1548
|
-
}
|
|
1549
|
-
|
|
1550
|
-
export interface __Ext_Microsoft_Extensions_Hosting_IHostBuilder {
|
|
1551
|
-
ConfigureWebHostDefaults(configure: System.Action_1<Microsoft_AspNetCore_Hosting.IWebHostBuilder>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
1552
|
-
ConfigureWebHostDefaults(configure: System.Action_1<Microsoft_AspNetCore_Hosting.IWebHostBuilder>, configureOptions: System.Action_1<Microsoft_Extensions_Hosting.WebHostBuilderOptions>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
1553
|
-
ConfigureWebHost(configure: System.Action_1<Microsoft_AspNetCore_Hosting.IWebHostBuilder>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
1554
|
-
ConfigureWebHost(configure: System.Action_1<Microsoft_AspNetCore_Hosting.IWebHostBuilder>, configureWebHostBuilder: System.Action_1<Microsoft_Extensions_Hosting.WebHostBuilderOptions>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
1555
|
-
ConfigureSlimWebHost(configure: System.Action_1<Microsoft_AspNetCore_Hosting.IWebHostBuilder>, configureWebHostBuilder: System.Action_1<Microsoft_Extensions_Hosting.WebHostBuilderOptions>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
1556
|
-
}
|
|
1557
|
-
|
|
1558
|
-
export interface __Ext_Microsoft_JSInterop_IJSInProcessObjectReference {
|
|
1559
|
-
InvokeVoid(identifier: string, ...args: unknown[]): Rewrap<this, void>;
|
|
1560
|
-
}
|
|
1561
|
-
|
|
1562
|
-
export interface __Ext_Microsoft_JSInterop_IJSInProcessRuntime {
|
|
1563
|
-
InvokeVoid(identifier: string, ...args: unknown[]): Rewrap<this, void>;
|
|
1564
|
-
}
|
|
1565
|
-
|
|
1566
|
-
export interface __Ext_Microsoft_JSInterop_IJSObjectReference {
|
|
1567
|
-
InvokeVoidAsync(identifier: string, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask>;
|
|
1568
|
-
InvokeAsync<TValue>(identifier: string, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
1569
|
-
InvokeAsync<TValue>(identifier: string, cancellationToken: System_Threading.CancellationToken, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
1570
|
-
InvokeVoidAsync(identifier: string, cancellationToken: System_Threading.CancellationToken, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask>;
|
|
1571
|
-
InvokeAsync<TValue>(identifier: string, timeout: System.TimeSpan, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
1572
|
-
InvokeVoidAsync(identifier: string, timeout: System.TimeSpan, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask>;
|
|
1573
|
-
InvokeConstructorAsync(identifier: string, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_JSInterop.IJSObjectReference>>;
|
|
1574
|
-
InvokeConstructorAsync(identifier: string, cancellationToken: System_Threading.CancellationToken, args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_JSInterop.IJSObjectReference>>;
|
|
1575
|
-
InvokeConstructorAsync(identifier: string, timeout: System.TimeSpan, args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_JSInterop.IJSObjectReference>>;
|
|
1576
|
-
GetValueAsync<TValue>(identifier: string, timeout: System.TimeSpan): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
1577
|
-
SetValueAsync<TValue>(identifier: string, value: TValue, timeout: System.TimeSpan): Rewrap<this, System_Threading_Tasks.ValueTask>;
|
|
1578
|
-
}
|
|
1579
|
-
|
|
1580
|
-
export interface __Ext_Microsoft_JSInterop_IJSRuntime {
|
|
1581
|
-
InvokeVoidAsync(identifier: string, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask>;
|
|
1582
|
-
InvokeAsync<TValue>(identifier: string, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
1583
|
-
InvokeAsync<TValue>(identifier: string, cancellationToken: System_Threading.CancellationToken, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
1584
|
-
InvokeVoidAsync(identifier: string, cancellationToken: System_Threading.CancellationToken, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask>;
|
|
1585
|
-
InvokeAsync<TValue>(identifier: string, timeout: System.TimeSpan, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
1586
|
-
InvokeVoidAsync(identifier: string, timeout: System.TimeSpan, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask>;
|
|
1587
|
-
InvokeConstructorAsync(identifier: string, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_JSInterop.IJSObjectReference>>;
|
|
1588
|
-
InvokeConstructorAsync(identifier: string, cancellationToken: System_Threading.CancellationToken, args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_JSInterop.IJSObjectReference>>;
|
|
1589
|
-
InvokeConstructorAsync(identifier: string, timeout: System.TimeSpan, args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_JSInterop.IJSObjectReference>>;
|
|
1590
|
-
GetValueAsync<TValue>(identifier: string, timeout: System.TimeSpan): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
1591
|
-
SetValueAsync<TValue>(identifier: string, value: TValue, timeout: System.TimeSpan): Rewrap<this, System_Threading_Tasks.ValueTask>;
|
|
1592
|
-
}
|
|
1593
|
-
|
|
1594
|
-
export interface __Ext_Microsoft_Net_Http_Headers_ContentDispositionHeaderValue {
|
|
1595
|
-
IsFileDisposition(): Rewrap<this, boolean>;
|
|
1596
|
-
IsFormDisposition(): Rewrap<this, boolean>;
|
|
1597
|
-
}
|
|
1598
|
-
|
|
1599
|
-
export interface __Ext_System_Security_Claims_ClaimsPrincipal {
|
|
1600
|
-
FindFirstValue(claimType: string): Rewrap<this, string | undefined>;
|
|
1601
|
-
}
|
|
1602
|
-
|
|
1603
126
|
// Internal helper types for sticky extension scopes
|
|
1604
127
|
type __TsonicExtMapOf<T> = T extends { __tsonic_ext?: infer M } ? M : {};
|
|
1605
128
|
type __TsonicMergeExtMaps<A, B> = A & B;
|
|
1606
129
|
type __TsonicWithExt<TShape, K extends string, TApplier> = { __tsonic_ext?: __TsonicMergeExtMaps<__TsonicExtMapOf<TShape>, { [P in K]: TApplier }> };
|
|
1607
130
|
|
|
1608
|
-
//
|
|
1609
|
-
|
|
1610
|
-
(
|
|
1611
|
-
|
|
1612
|
-
)
|
|
131
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Authentication
|
|
132
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Authentication {
|
|
133
|
+
AuthenticateAsync(this: Microsoft_AspNetCore_Http.HttpContext): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Authentication.AuthenticateResult>>;
|
|
134
|
+
AuthenticateAsync(this: Microsoft_AspNetCore_Http.HttpContext, scheme: string): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Authentication.AuthenticateResult>>;
|
|
135
|
+
ChallengeAsync(this: Microsoft_AspNetCore_Http.HttpContext, scheme: string): Rewrap<this, System_Threading_Tasks.Task>;
|
|
136
|
+
ChallengeAsync(this: Microsoft_AspNetCore_Http.HttpContext): Rewrap<this, System_Threading_Tasks.Task>;
|
|
137
|
+
ChallengeAsync(this: Microsoft_AspNetCore_Http.HttpContext, properties: Microsoft_AspNetCore_Authentication.AuthenticationProperties): Rewrap<this, System_Threading_Tasks.Task>;
|
|
138
|
+
ChallengeAsync(this: Microsoft_AspNetCore_Http.HttpContext, scheme: string, properties: Microsoft_AspNetCore_Authentication.AuthenticationProperties): Rewrap<this, System_Threading_Tasks.Task>;
|
|
139
|
+
DeleteClaim(this: Microsoft_AspNetCore_Authentication_OAuth_Claims.ClaimActionCollection, claimType: string): Rewrap<this, void>;
|
|
140
|
+
DeleteClaims(this: Microsoft_AspNetCore_Authentication_OAuth_Claims.ClaimActionCollection, ...claimTypes: string[]): Rewrap<this, void>;
|
|
141
|
+
ForbidAsync(this: Microsoft_AspNetCore_Http.HttpContext, scheme: string): Rewrap<this, System_Threading_Tasks.Task>;
|
|
142
|
+
ForbidAsync(this: Microsoft_AspNetCore_Http.HttpContext): Rewrap<this, System_Threading_Tasks.Task>;
|
|
143
|
+
ForbidAsync(this: Microsoft_AspNetCore_Http.HttpContext, properties: Microsoft_AspNetCore_Authentication.AuthenticationProperties): Rewrap<this, System_Threading_Tasks.Task>;
|
|
144
|
+
ForbidAsync(this: Microsoft_AspNetCore_Http.HttpContext, scheme: string, properties: Microsoft_AspNetCore_Authentication.AuthenticationProperties): Rewrap<this, System_Threading_Tasks.Task>;
|
|
145
|
+
GetSchemeConfiguration(this: Microsoft_AspNetCore_Authentication.IAuthenticationConfigurationProvider, authenticationScheme: string): Rewrap<this, Microsoft_Extensions_Configuration.IConfiguration>;
|
|
146
|
+
GetString(this: System_Text_Json.JsonElement, key: string): Rewrap<this, string | undefined>;
|
|
147
|
+
GetTokenAsync(this: Microsoft_AspNetCore_Authentication.IAuthenticationService, context: Microsoft_AspNetCore_Http.HttpContext, tokenName: string): Rewrap<this, System_Threading_Tasks.Task_1<string | undefined>>;
|
|
148
|
+
GetTokenAsync(this: Microsoft_AspNetCore_Authentication.IAuthenticationService, context: Microsoft_AspNetCore_Http.HttpContext, scheme: string, tokenName: string): Rewrap<this, System_Threading_Tasks.Task_1<string | undefined>>;
|
|
149
|
+
GetTokenAsync(this: Microsoft_AspNetCore_Http.HttpContext, scheme: string, tokenName: string): Rewrap<this, System_Threading_Tasks.Task_1<string | undefined>>;
|
|
150
|
+
GetTokenAsync(this: Microsoft_AspNetCore_Http.HttpContext, tokenName: string): Rewrap<this, System_Threading_Tasks.Task_1<string | undefined>>;
|
|
151
|
+
GetTokenValue(this: Microsoft_AspNetCore_Authentication.AuthenticationProperties, tokenName: string): Rewrap<this, string | undefined>;
|
|
152
|
+
GetTokens(this: Microsoft_AspNetCore_Authentication.AuthenticationProperties): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Authentication.AuthenticationToken>>;
|
|
153
|
+
MapAll(this: Microsoft_AspNetCore_Authentication_OAuth_Claims.ClaimActionCollection): Rewrap<this, void>;
|
|
154
|
+
MapAllExcept(this: Microsoft_AspNetCore_Authentication_OAuth_Claims.ClaimActionCollection, ...exclusions: string[]): Rewrap<this, void>;
|
|
155
|
+
MapCustomJson(this: Microsoft_AspNetCore_Authentication_OAuth_Claims.ClaimActionCollection, claimType: string, resolver: System.Func_2<System_Text_Json.JsonElement, System_Internal.String>): Rewrap<this, void>;
|
|
156
|
+
MapCustomJson(this: Microsoft_AspNetCore_Authentication_OAuth_Claims.ClaimActionCollection, claimType: string, valueType: string, resolver: System.Func_2<System_Text_Json.JsonElement, System_Internal.String>): Rewrap<this, void>;
|
|
157
|
+
MapJsonKey(this: Microsoft_AspNetCore_Authentication_OAuth_Claims.ClaimActionCollection, claimType: string, jsonKey: string): Rewrap<this, void>;
|
|
158
|
+
MapJsonKey(this: Microsoft_AspNetCore_Authentication_OAuth_Claims.ClaimActionCollection, claimType: string, jsonKey: string, valueType: string): Rewrap<this, void>;
|
|
159
|
+
MapJsonSubKey(this: Microsoft_AspNetCore_Authentication_OAuth_Claims.ClaimActionCollection, claimType: string, jsonKey: string, subKey: string): Rewrap<this, void>;
|
|
160
|
+
MapJsonSubKey(this: Microsoft_AspNetCore_Authentication_OAuth_Claims.ClaimActionCollection, claimType: string, jsonKey: string, subKey: string, valueType: string): Rewrap<this, void>;
|
|
161
|
+
SignInAsync(this: Microsoft_AspNetCore_Http.HttpContext, scheme: string, principal: System_Security_Claims.ClaimsPrincipal): Rewrap<this, System_Threading_Tasks.Task>;
|
|
162
|
+
SignInAsync(this: Microsoft_AspNetCore_Http.HttpContext, principal: System_Security_Claims.ClaimsPrincipal): Rewrap<this, System_Threading_Tasks.Task>;
|
|
163
|
+
SignInAsync(this: Microsoft_AspNetCore_Http.HttpContext, principal: System_Security_Claims.ClaimsPrincipal, properties: Microsoft_AspNetCore_Authentication.AuthenticationProperties): Rewrap<this, System_Threading_Tasks.Task>;
|
|
164
|
+
SignInAsync(this: Microsoft_AspNetCore_Http.HttpContext, scheme: string, principal: System_Security_Claims.ClaimsPrincipal, properties: Microsoft_AspNetCore_Authentication.AuthenticationProperties): Rewrap<this, System_Threading_Tasks.Task>;
|
|
165
|
+
SignOutAsync(this: Microsoft_AspNetCore_Http.HttpContext): Rewrap<this, System_Threading_Tasks.Task>;
|
|
166
|
+
SignOutAsync(this: Microsoft_AspNetCore_Http.HttpContext, properties: Microsoft_AspNetCore_Authentication.AuthenticationProperties): Rewrap<this, System_Threading_Tasks.Task>;
|
|
167
|
+
SignOutAsync(this: Microsoft_AspNetCore_Http.HttpContext, scheme: string): Rewrap<this, System_Threading_Tasks.Task>;
|
|
168
|
+
SignOutAsync(this: Microsoft_AspNetCore_Http.HttpContext, scheme: string, properties: Microsoft_AspNetCore_Authentication.AuthenticationProperties): Rewrap<this, System_Threading_Tasks.Task>;
|
|
169
|
+
StoreTokens(this: Microsoft_AspNetCore_Authentication.AuthenticationProperties, tokens: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Authentication.AuthenticationToken>): Rewrap<this, void>;
|
|
170
|
+
UpdateTokenValue(this: Microsoft_AspNetCore_Authentication.AuthenticationProperties, tokenName: string, tokenValue: string): Rewrap<this, boolean>;
|
|
171
|
+
}
|
|
1613
172
|
|
|
173
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Authentication
|
|
1614
174
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Authentication {
|
|
1615
175
|
__tsonic_shape: unknown;
|
|
1616
|
-
__tsonic_type:
|
|
176
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Authentication;
|
|
1617
177
|
}
|
|
1618
178
|
|
|
1619
179
|
export type ExtensionMethods_Microsoft_AspNetCore_Authentication<TShape> =
|
|
1620
180
|
TShape extends null | undefined ? TShape
|
|
1621
181
|
: TShape extends void ? void
|
|
1622
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Authentication", __TsonicExtApplier_Microsoft_AspNetCore_Authentication> &
|
|
182
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Authentication", __TsonicExtApplier_Microsoft_AspNetCore_Authentication> & __TsonicExtMethods_Microsoft_AspNetCore_Authentication;
|
|
1623
183
|
|
|
1624
|
-
//
|
|
1625
|
-
|
|
1626
|
-
(
|
|
1627
|
-
|
|
1628
|
-
)
|
|
184
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Authorization
|
|
185
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Authorization {
|
|
186
|
+
AuthorizeAsync(this: Microsoft_AspNetCore_Authorization.IAuthorizationService, user: System_Security_Claims.ClaimsPrincipal, resource: unknown, requirement: Microsoft_AspNetCore_Authorization.IAuthorizationRequirement): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Authorization.AuthorizationResult>>;
|
|
187
|
+
AuthorizeAsync(this: Microsoft_AspNetCore_Authorization.IAuthorizationService, user: System_Security_Claims.ClaimsPrincipal, resource: unknown, policy: Microsoft_AspNetCore_Authorization.AuthorizationPolicy): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Authorization.AuthorizationResult>>;
|
|
188
|
+
AuthorizeAsync(this: Microsoft_AspNetCore_Authorization.IAuthorizationService, user: System_Security_Claims.ClaimsPrincipal, policy: Microsoft_AspNetCore_Authorization.AuthorizationPolicy): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Authorization.AuthorizationResult>>;
|
|
189
|
+
AuthorizeAsync(this: Microsoft_AspNetCore_Authorization.IAuthorizationService, user: System_Security_Claims.ClaimsPrincipal, policyName: string): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Authorization.AuthorizationResult>>;
|
|
190
|
+
}
|
|
1629
191
|
|
|
192
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Authorization
|
|
1630
193
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Authorization {
|
|
1631
194
|
__tsonic_shape: unknown;
|
|
1632
|
-
__tsonic_type:
|
|
195
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Authorization;
|
|
1633
196
|
}
|
|
1634
197
|
|
|
1635
198
|
export type ExtensionMethods_Microsoft_AspNetCore_Authorization<TShape> =
|
|
1636
199
|
TShape extends null | undefined ? TShape
|
|
1637
200
|
: TShape extends void ? void
|
|
1638
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Authorization", __TsonicExtApplier_Microsoft_AspNetCore_Authorization> &
|
|
201
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Authorization", __TsonicExtApplier_Microsoft_AspNetCore_Authorization> & __TsonicExtMethods_Microsoft_AspNetCore_Authorization;
|
|
202
|
+
|
|
203
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Builder
|
|
204
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Builder {
|
|
205
|
+
AddAdditionalAssemblies(this: Microsoft_AspNetCore_Builder.RazorComponentsEndpointConventionBuilder, ...assemblies: System_Reflection.Assembly[]): Rewrap<this, Microsoft_AspNetCore_Builder.RazorComponentsEndpointConventionBuilder>;
|
|
206
|
+
AddHostFiltering(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<Microsoft_AspNetCore_HostFiltering.HostFilteringOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
207
|
+
AddHsts(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<Microsoft_AspNetCore_HttpsPolicy.HstsOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
208
|
+
AddHttpsRedirection(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<Microsoft_AspNetCore_HttpsPolicy.HttpsRedirectionOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
209
|
+
AddInitialRequestCultureProvider(this: Microsoft_AspNetCore_Builder.RequestLocalizationOptions, requestCultureProvider: Microsoft_AspNetCore_Localization.RequestCultureProvider): Rewrap<this, Microsoft_AspNetCore_Builder.RequestLocalizationOptions>;
|
|
210
|
+
AddInteractiveServerRenderMode(this: Microsoft_AspNetCore_Builder.RazorComponentsEndpointConventionBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.RazorComponentsEndpointConventionBuilder>;
|
|
211
|
+
AddInteractiveServerRenderMode(this: Microsoft_AspNetCore_Builder.RazorComponentsEndpointConventionBuilder, configure: System.Action_1<Microsoft_AspNetCore_Components_Server.ServerComponentsEndpointOptions>): Rewrap<this, Microsoft_AspNetCore_Builder.RazorComponentsEndpointConventionBuilder>;
|
|
212
|
+
AddRateLimiter(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<Microsoft_AspNetCore_RateLimiting.RateLimiterOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
213
|
+
AddRateLimiter(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
214
|
+
AddResponseCompression(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
215
|
+
AddResponseCompression(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<Microsoft_AspNetCore_ResponseCompression.ResponseCompressionOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
216
|
+
DisableRequestTimeout(this: Microsoft_AspNetCore_Builder.IEndpointConventionBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
217
|
+
Map(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, pathMatch: string, configuration: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
218
|
+
Map(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, pathMatch: Microsoft_AspNetCore_Http.PathString, configuration: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
219
|
+
Map(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, pathMatch: Microsoft_AspNetCore_Http.PathString, preserveMatchedPathSegment: boolean, configuration: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
220
|
+
Map(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
221
|
+
Map(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: Microsoft_AspNetCore_Routing_Patterns.RoutePattern, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
222
|
+
Map(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
223
|
+
Map(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: Microsoft_AspNetCore_Routing_Patterns.RoutePattern, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
224
|
+
MapAreaControllerRoute(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, name: string, areaName: string, pattern: string, defaults?: unknown, constraints?: unknown, dataTokens?: unknown): Rewrap<this, Microsoft_AspNetCore_Builder.ControllerActionEndpointConventionBuilder>;
|
|
225
|
+
MapAreaRoute(this: Microsoft_AspNetCore_Routing.IRouteBuilder, name: string, areaName: string, template: string): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
226
|
+
MapAreaRoute(this: Microsoft_AspNetCore_Routing.IRouteBuilder, name: string, areaName: string, template: string, defaults: unknown): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
227
|
+
MapAreaRoute(this: Microsoft_AspNetCore_Routing.IRouteBuilder, name: string, areaName: string, template: string, defaults: unknown, constraints: unknown): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
228
|
+
MapAreaRoute(this: Microsoft_AspNetCore_Routing.IRouteBuilder, name: string, areaName: string, template: string, defaults: unknown, constraints: unknown, dataTokens: unknown): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
229
|
+
MapBlazorHub(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.ComponentEndpointConventionBuilder>;
|
|
230
|
+
MapBlazorHub(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, path: string): Rewrap<this, Microsoft_AspNetCore_Builder.ComponentEndpointConventionBuilder>;
|
|
231
|
+
MapBlazorHub(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, configureOptions: System.Action_1<Microsoft_AspNetCore_Http_Connections.HttpConnectionDispatcherOptions>): Rewrap<this, Microsoft_AspNetCore_Builder.ComponentEndpointConventionBuilder>;
|
|
232
|
+
MapBlazorHub(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, path: string, configureOptions: System.Action_1<Microsoft_AspNetCore_Http_Connections.HttpConnectionDispatcherOptions>): Rewrap<this, Microsoft_AspNetCore_Builder.ComponentEndpointConventionBuilder>;
|
|
233
|
+
MapConnectionHandler<TConnectionHandler>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string): Rewrap<this, Microsoft_AspNetCore_Builder.ConnectionEndpointRouteBuilder>;
|
|
234
|
+
MapConnectionHandler<TConnectionHandler>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, configureOptions: System.Action_1<Microsoft_AspNetCore_Http_Connections.HttpConnectionDispatcherOptions>): Rewrap<this, Microsoft_AspNetCore_Builder.ConnectionEndpointRouteBuilder>;
|
|
235
|
+
MapConnections(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, configure: System.Action_1<Microsoft_AspNetCore_Connections.IConnectionBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.ConnectionEndpointRouteBuilder>;
|
|
236
|
+
MapConnections(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, options: Microsoft_AspNetCore_Http_Connections.HttpConnectionDispatcherOptions, configure: System.Action_1<Microsoft_AspNetCore_Connections.IConnectionBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.ConnectionEndpointRouteBuilder>;
|
|
237
|
+
MapControllerRoute(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, name: string, pattern: string, defaults?: unknown, constraints?: unknown, dataTokens?: unknown): Rewrap<this, Microsoft_AspNetCore_Builder.ControllerActionEndpointConventionBuilder>;
|
|
238
|
+
MapControllers(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.ControllerActionEndpointConventionBuilder>;
|
|
239
|
+
MapDefaultControllerRoute(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.ControllerActionEndpointConventionBuilder>;
|
|
240
|
+
MapDelete(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
241
|
+
MapDelete(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
242
|
+
MapDynamicControllerRoute<TTransformer>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string): Rewrap<this, void>;
|
|
243
|
+
MapDynamicControllerRoute<TTransformer>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, state: unknown): Rewrap<this, void>;
|
|
244
|
+
MapDynamicControllerRoute<TTransformer>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, state: unknown, order: int): Rewrap<this, void>;
|
|
245
|
+
MapDynamicPageRoute<TTransformer>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string): Rewrap<this, void>;
|
|
246
|
+
MapDynamicPageRoute<TTransformer>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, state: unknown): Rewrap<this, void>;
|
|
247
|
+
MapDynamicPageRoute<TTransformer>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, state: unknown, order: int): Rewrap<this, void>;
|
|
248
|
+
MapFallback(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
249
|
+
MapFallback(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
250
|
+
MapFallback(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
251
|
+
MapFallback(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
252
|
+
MapFallbackToAreaController(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, action: string, controller: string, area: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
253
|
+
MapFallbackToAreaController(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, action: string, controller: string, area: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
254
|
+
MapFallbackToAreaPage(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, page: string, area: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
255
|
+
MapFallbackToAreaPage(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, page: string, area: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
256
|
+
MapFallbackToController(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, action: string, controller: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
257
|
+
MapFallbackToController(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, action: string, controller: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
258
|
+
MapFallbackToFile(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, filePath: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
259
|
+
MapFallbackToFile(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, filePath: string, options: Microsoft_AspNetCore_Builder.StaticFileOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
260
|
+
MapFallbackToFile(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, filePath: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
261
|
+
MapFallbackToFile(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, filePath: string, options: Microsoft_AspNetCore_Builder.StaticFileOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
262
|
+
MapFallbackToPage(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, page: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
263
|
+
MapFallbackToPage(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, page: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
264
|
+
MapGet(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
265
|
+
MapGet(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
266
|
+
MapGroup(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, prefix: string): Rewrap<this, Microsoft_AspNetCore_Routing.RouteGroupBuilder>;
|
|
267
|
+
MapGroup(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, prefix: Microsoft_AspNetCore_Routing_Patterns.RoutePattern): Rewrap<this, Microsoft_AspNetCore_Routing.RouteGroupBuilder>;
|
|
268
|
+
MapHealthChecks(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
269
|
+
MapHealthChecks(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, options: Microsoft_AspNetCore_Diagnostics_HealthChecks.HealthCheckOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
270
|
+
MapHub<THub>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string): Rewrap<this, Microsoft_AspNetCore_Builder.HubEndpointConventionBuilder>;
|
|
271
|
+
MapHub<THub>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, configureOptions: System.Action_1<Microsoft_AspNetCore_Http_Connections.HttpConnectionDispatcherOptions>): Rewrap<this, Microsoft_AspNetCore_Builder.HubEndpointConventionBuilder>;
|
|
272
|
+
MapMethods(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, httpMethods: System_Collections_Generic.IEnumerable_1<System_Internal.String>, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
273
|
+
MapMethods(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, httpMethods: System_Collections_Generic.IEnumerable_1<System_Internal.String>, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
274
|
+
MapPatch(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
275
|
+
MapPatch(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
276
|
+
MapPost(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
277
|
+
MapPost(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
278
|
+
MapPut(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
279
|
+
MapPut(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
280
|
+
MapRazorComponents<TRootComponent>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.RazorComponentsEndpointConventionBuilder>;
|
|
281
|
+
MapRazorPages(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.PageActionEndpointConventionBuilder>;
|
|
282
|
+
MapRoute(this: Microsoft_AspNetCore_Routing.IRouteBuilder, name: string, template: string): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
283
|
+
MapRoute(this: Microsoft_AspNetCore_Routing.IRouteBuilder, name: string, template: string, defaults: unknown): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
284
|
+
MapRoute(this: Microsoft_AspNetCore_Routing.IRouteBuilder, name: string, template: string, defaults: unknown, constraints: unknown): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
285
|
+
MapRoute(this: Microsoft_AspNetCore_Routing.IRouteBuilder, name: string, template: string, defaults: unknown, constraints: unknown, dataTokens: unknown): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
286
|
+
MapStaticAssets(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, staticAssetsManifestPath?: string): Rewrap<this, Microsoft_AspNetCore_StaticAssets.StaticAssetsEndpointConventionBuilder>;
|
|
287
|
+
MapWhen(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, predicate: System.Func_2<Microsoft_AspNetCore_Http.HttpContext, System_Internal.Boolean>, configuration: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
288
|
+
Run(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, handler: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, void>;
|
|
289
|
+
ShortCircuit(this: Microsoft_AspNetCore_Builder.IEndpointConventionBuilder, statusCode?: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
290
|
+
Use(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, middleware: System.Func_3<Microsoft_AspNetCore_Http.HttpContext, System.Func_1<System_Threading_Tasks.Task>, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
291
|
+
Use(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, middleware: System.Func_3<Microsoft_AspNetCore_Http.HttpContext, Microsoft_AspNetCore_Http.RequestDelegate, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
292
|
+
UseAntiforgery(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
293
|
+
UseAuthentication(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
294
|
+
UseAuthorization(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
295
|
+
UseCertificateForwarding(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
296
|
+
UseCookiePolicy(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
297
|
+
UseCookiePolicy(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, options: Microsoft_AspNetCore_Builder.CookiePolicyOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
298
|
+
UseCors(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
299
|
+
UseCors(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, policyName: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
300
|
+
UseCors(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, configurePolicy: System.Action_1<Microsoft_AspNetCore_Cors_Infrastructure.CorsPolicyBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
301
|
+
UseDefaultFiles(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
302
|
+
UseDefaultFiles(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, requestPath: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
303
|
+
UseDefaultFiles(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, options: Microsoft_AspNetCore_Builder.DefaultFilesOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
304
|
+
UseDeveloperExceptionPage(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
305
|
+
UseDeveloperExceptionPage(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, options: Microsoft_AspNetCore_Builder.DeveloperExceptionPageOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
306
|
+
UseDirectoryBrowser(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
307
|
+
UseDirectoryBrowser(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, requestPath: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
308
|
+
UseDirectoryBrowser(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, options: Microsoft_AspNetCore_Builder.DirectoryBrowserOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
309
|
+
UseEndpoints(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, configure: System.Action_1<Microsoft_AspNetCore_Routing.IEndpointRouteBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
310
|
+
UseExceptionHandler(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
311
|
+
UseExceptionHandler(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, errorHandlingPath: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
312
|
+
UseExceptionHandler(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, errorHandlingPath: string, createScopeForErrors: boolean): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
313
|
+
UseExceptionHandler(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, configure: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
314
|
+
UseExceptionHandler(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, options: Microsoft_AspNetCore_Builder.ExceptionHandlerOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
315
|
+
UseFileServer(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
316
|
+
UseFileServer(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, enableDirectoryBrowsing: boolean): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
317
|
+
UseFileServer(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, requestPath: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
318
|
+
UseFileServer(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, options: Microsoft_AspNetCore_Builder.FileServerOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
319
|
+
UseForwardedHeaders(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
320
|
+
UseForwardedHeaders(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, options: Microsoft_AspNetCore_Builder.ForwardedHeadersOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
321
|
+
UseHealthChecks(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, path: Microsoft_AspNetCore_Http.PathString): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
322
|
+
UseHealthChecks(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, path: Microsoft_AspNetCore_Http.PathString, options: Microsoft_AspNetCore_Diagnostics_HealthChecks.HealthCheckOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
323
|
+
UseHealthChecks(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, path: Microsoft_AspNetCore_Http.PathString, port: int): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
324
|
+
UseHealthChecks(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, path: Microsoft_AspNetCore_Http.PathString, port: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
325
|
+
UseHealthChecks(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, path: Microsoft_AspNetCore_Http.PathString, port: int, options: Microsoft_AspNetCore_Diagnostics_HealthChecks.HealthCheckOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
326
|
+
UseHealthChecks(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, path: Microsoft_AspNetCore_Http.PathString, port: string, options: Microsoft_AspNetCore_Diagnostics_HealthChecks.HealthCheckOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
327
|
+
UseHostFiltering(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
328
|
+
UseHsts(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
329
|
+
UseHttpLogging(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
330
|
+
UseHttpMethodOverride(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
331
|
+
UseHttpMethodOverride(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, options: Microsoft_AspNetCore_Builder.HttpMethodOverrideOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
332
|
+
UseHttpsRedirection(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
333
|
+
UseMiddleware<TMiddleware>(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, ...args: unknown[]): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
334
|
+
UseMiddleware(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, middleware: System.Type, ...args: unknown[]): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
335
|
+
UseMvc(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
336
|
+
UseMvc(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, configureRoutes: System.Action_1<Microsoft_AspNetCore_Routing.IRouteBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
337
|
+
UseMvcWithDefaultRoute(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
338
|
+
UseOutputCache(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
339
|
+
UsePathBase(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, pathBase: Microsoft_AspNetCore_Http.PathString): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
340
|
+
UseRateLimiter(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
341
|
+
UseRateLimiter(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, options: Microsoft_AspNetCore_RateLimiting.RateLimiterOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
342
|
+
UseRequestDecompression(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
343
|
+
UseRequestLocalization(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
344
|
+
UseRequestLocalization(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, options: Microsoft_AspNetCore_Builder.RequestLocalizationOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
345
|
+
UseRequestLocalization(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, optionsAction: System.Action_1<Microsoft_AspNetCore_Builder.RequestLocalizationOptions>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
346
|
+
UseRequestLocalization(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, ...cultures: string[]): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
347
|
+
UseRequestTimeouts(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
348
|
+
UseResponseCaching(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
349
|
+
UseResponseCompression(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
350
|
+
UseRewriter(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
351
|
+
UseRewriter(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, options: Microsoft_AspNetCore_Rewrite.RewriteOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
352
|
+
UseRouter(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, router: Microsoft_AspNetCore_Routing.IRouter): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
353
|
+
UseRouter(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, action: System.Action_1<Microsoft_AspNetCore_Routing.IRouteBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
354
|
+
UseRouting(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
355
|
+
UseSession(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
356
|
+
UseSession(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, options: Microsoft_AspNetCore_Builder.SessionOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
357
|
+
UseStaticFiles(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
358
|
+
UseStaticFiles(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, requestPath: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
359
|
+
UseStaticFiles(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, options: Microsoft_AspNetCore_Builder.StaticFileOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
360
|
+
UseStatusCodePages(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, options: Microsoft_AspNetCore_Builder.StatusCodePagesOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
361
|
+
UseStatusCodePages(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
362
|
+
UseStatusCodePages(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, handler: System.Func_2<Microsoft_AspNetCore_Diagnostics.StatusCodeContext, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
363
|
+
UseStatusCodePages(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, contentType: string, bodyFormat: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
364
|
+
UseStatusCodePages(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, configuration: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
365
|
+
UseStatusCodePagesWithReExecute(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, pathFormat: string, queryFormat: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
366
|
+
UseStatusCodePagesWithReExecute(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, pathFormat: string, queryFormat?: string, createScopeForStatusCodePages?: boolean): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
367
|
+
UseStatusCodePagesWithRedirects(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, locationFormat: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
368
|
+
UseW3CLogging(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
369
|
+
UseWebSockets(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
370
|
+
UseWebSockets(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, options: Microsoft_AspNetCore_Builder.WebSocketOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
371
|
+
UseWelcomePage(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, options: Microsoft_AspNetCore_Builder.WelcomePageOptions): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
372
|
+
UseWelcomePage(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, path: Microsoft_AspNetCore_Http.PathString): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
373
|
+
UseWelcomePage(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, path: string): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
374
|
+
UseWelcomePage(this: Microsoft_AspNetCore_Builder.IApplicationBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
375
|
+
UseWhen(this: Microsoft_AspNetCore_Builder.IApplicationBuilder, predicate: System.Func_2<Microsoft_AspNetCore_Http.HttpContext, System_Internal.Boolean>, configuration: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.IApplicationBuilder>;
|
|
376
|
+
WithRequestTimeout(this: Microsoft_AspNetCore_Builder.IEndpointConventionBuilder, timeout: System.TimeSpan): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
377
|
+
WithRequestTimeout(this: Microsoft_AspNetCore_Builder.IEndpointConventionBuilder, policyName: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
378
|
+
WithRequestTimeout(this: Microsoft_AspNetCore_Builder.IEndpointConventionBuilder, policy: Microsoft_AspNetCore_Http_Timeouts.RequestTimeoutPolicy): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
379
|
+
WithStaticAssets(this: Microsoft_AspNetCore_Builder.ControllerActionEndpointConventionBuilder, manifestPath?: string): Rewrap<this, Microsoft_AspNetCore_Builder.ControllerActionEndpointConventionBuilder>;
|
|
380
|
+
WithStaticAssets(this: Microsoft_AspNetCore_Builder.PageActionEndpointConventionBuilder, manifestPath?: string): Rewrap<this, Microsoft_AspNetCore_Builder.PageActionEndpointConventionBuilder>;
|
|
381
|
+
WithStaticAssets(this: Microsoft_AspNetCore_Builder.RazorComponentsEndpointConventionBuilder, manifestPath?: string): Rewrap<this, Microsoft_AspNetCore_Builder.RazorComponentsEndpointConventionBuilder>;
|
|
382
|
+
}
|
|
1639
383
|
|
|
1640
384
|
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Builder
|
|
1641
|
-
type __TsonicExtSurface_Microsoft_AspNetCore_Builder<TShape> =
|
|
1642
|
-
(
|
|
1643
|
-
(TShape extends Microsoft_AspNetCore_Builder.ControllerActionEndpointConventionBuilder ? __Ext_Microsoft_AspNetCore_Builder_ControllerActionEndpointConventionBuilder : {}) & (TShape extends Microsoft_AspNetCore_Builder.IApplicationBuilder ? __Ext_Microsoft_AspNetCore_Builder_IApplicationBuilder : {}) & (TShape extends Microsoft_AspNetCore_Builder.IEndpointConventionBuilder ? __Ext_Microsoft_AspNetCore_Builder_IEndpointConventionBuilder : {}) & (TShape extends Microsoft_AspNetCore_Builder.PageActionEndpointConventionBuilder ? __Ext_Microsoft_AspNetCore_Builder_PageActionEndpointConventionBuilder : {}) & (TShape extends Microsoft_AspNetCore_Builder.RazorComponentsEndpointConventionBuilder ? __Ext_Microsoft_AspNetCore_Builder_RazorComponentsEndpointConventionBuilder : {}) & (TShape extends Microsoft_AspNetCore_Builder.RequestLocalizationOptions ? __Ext_Microsoft_AspNetCore_Builder_RequestLocalizationOptions : {}) & (TShape extends Microsoft_AspNetCore_Routing.IEndpointRouteBuilder ? __Ext_Microsoft_AspNetCore_Builder_IEndpointRouteBuilder : {}) & (TShape extends Microsoft_AspNetCore_Routing.IRouteBuilder ? __Ext_Microsoft_AspNetCore_Builder_IRouteBuilder : {}) & (TShape extends Microsoft_Extensions_DependencyInjection.IServiceCollection ? __Ext_Microsoft_AspNetCore_Builder_IServiceCollection : {})
|
|
1644
|
-
);
|
|
1645
|
-
|
|
1646
385
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Builder {
|
|
1647
386
|
__tsonic_shape: unknown;
|
|
1648
|
-
__tsonic_type:
|
|
387
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Builder;
|
|
1649
388
|
}
|
|
1650
389
|
|
|
1651
390
|
export type ExtensionMethods_Microsoft_AspNetCore_Builder<TShape> =
|
|
1652
391
|
TShape extends null | undefined ? TShape
|
|
1653
392
|
: TShape extends void ? void
|
|
1654
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Builder", __TsonicExtApplier_Microsoft_AspNetCore_Builder> &
|
|
393
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Builder", __TsonicExtApplier_Microsoft_AspNetCore_Builder> & __TsonicExtMethods_Microsoft_AspNetCore_Builder;
|
|
394
|
+
|
|
395
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Components
|
|
396
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Components {
|
|
397
|
+
AddSupplyValueFromQueryProvider(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
398
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Action_1<System.EventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<System.EventArgs>>;
|
|
399
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Func_2<System.EventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<System.EventArgs>>;
|
|
400
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components.ChangeEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
401
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components.ChangeEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
402
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System_Internal.String>, existingValue: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
403
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System_Internal.String, System_Threading_Tasks.Task>, existingValue: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
404
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System_Internal.Boolean>, existingValue: boolean, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
405
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System_Internal.Boolean, System_Threading_Tasks.Task>, existingValue: boolean, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
406
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.Nullable_1<System_Internal.Boolean>>, existingValue: System.Nullable_1<System_Internal.Boolean>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
407
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.Nullable_1<System_Internal.Boolean>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System_Internal.Boolean>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
408
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System_Internal.Int32>, existingValue: int, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
409
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System_Internal.Int32, System_Threading_Tasks.Task>, existingValue: int, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
410
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.Nullable_1<System_Internal.Int32>>, existingValue: System.Nullable_1<System_Internal.Int32>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
411
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.Nullable_1<System_Internal.Int32>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System_Internal.Int32>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
412
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System_Internal.Int64>, existingValue: long, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
413
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System_Internal.Int64, System_Threading_Tasks.Task>, existingValue: long, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
414
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System_Internal.Int16>, existingValue: short, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
415
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System_Internal.Int16, System_Threading_Tasks.Task>, existingValue: short, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
416
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.Nullable_1<System_Internal.Int64>>, existingValue: System.Nullable_1<System_Internal.Int64>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
417
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.Nullable_1<System_Internal.Int64>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System_Internal.Int64>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
418
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.Nullable_1<System_Internal.Int16>>, existingValue: System.Nullable_1<System_Internal.Int16>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
419
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.Nullable_1<System_Internal.Int16>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System_Internal.Int16>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
420
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System_Internal.Single>, existingValue: float, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
421
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System_Internal.Single, System_Threading_Tasks.Task>, existingValue: float, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
422
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.Nullable_1<System_Internal.Single>>, existingValue: System.Nullable_1<System_Internal.Single>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
423
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.Nullable_1<System_Internal.Single>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System_Internal.Single>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
424
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System_Internal.Double>, existingValue: double, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
425
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System_Internal.Double, System_Threading_Tasks.Task>, existingValue: double, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
426
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.Nullable_1<System_Internal.Double>>, existingValue: System.Nullable_1<System_Internal.Double>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
427
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.Nullable_1<System_Internal.Double>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System_Internal.Double>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
428
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System_Internal.Decimal>, existingValue: decimal, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
429
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System_Internal.Decimal, System_Threading_Tasks.Task>, existingValue: decimal, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
430
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.Nullable_1<System_Internal.Decimal>>, existingValue: System.Nullable_1<System_Internal.Decimal>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
431
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.Nullable_1<System_Internal.Decimal>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System_Internal.Decimal>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
432
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.DateTime>, existingValue: System.DateTime, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
433
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.DateTime, System_Threading_Tasks.Task>, existingValue: System.DateTime, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
434
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.DateTime>, existingValue: System.DateTime, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
435
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.DateTime, System_Threading_Tasks.Task>, existingValue: System.DateTime, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
436
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.Nullable_1<System.DateTime>>, existingValue: System.Nullable_1<System.DateTime>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
437
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.Nullable_1<System.DateTime>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System.DateTime>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
438
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.Nullable_1<System.DateTime>>, existingValue: System.Nullable_1<System.DateTime>, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
439
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.Nullable_1<System.DateTime>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System.DateTime>, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
440
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.DateTimeOffset>, existingValue: System.DateTimeOffset, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
441
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.DateTimeOffset, System_Threading_Tasks.Task>, existingValue: System.DateTimeOffset, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
442
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.DateTimeOffset>, existingValue: System.DateTimeOffset, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
443
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.DateTimeOffset, System_Threading_Tasks.Task>, existingValue: System.DateTimeOffset, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
444
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.Nullable_1<System.DateTimeOffset>>, existingValue: System.Nullable_1<System.DateTimeOffset>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
445
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.Nullable_1<System.DateTimeOffset>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System.DateTimeOffset>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
446
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.Nullable_1<System.DateTimeOffset>>, existingValue: System.Nullable_1<System.DateTimeOffset>, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
447
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.Nullable_1<System.DateTimeOffset>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System.DateTimeOffset>, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
448
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.DateOnly>, existingValue: System.DateOnly, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
449
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.DateOnly, System_Threading_Tasks.Task>, existingValue: System.DateOnly, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
450
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.DateOnly>, existingValue: System.DateOnly, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
451
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.DateOnly, System_Threading_Tasks.Task>, existingValue: System.DateOnly, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
452
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.Nullable_1<System.DateOnly>>, existingValue: System.Nullable_1<System.DateOnly>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
453
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.Nullable_1<System.DateOnly>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System.DateOnly>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
454
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.Nullable_1<System.DateOnly>>, existingValue: System.Nullable_1<System.DateOnly>, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
455
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.Nullable_1<System.DateOnly>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System.DateOnly>, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
456
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.TimeOnly>, existingValue: System.TimeOnly, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
457
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.TimeOnly, System_Threading_Tasks.Task>, existingValue: System.TimeOnly, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
458
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.TimeOnly>, existingValue: System.TimeOnly, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
459
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.TimeOnly, System_Threading_Tasks.Task>, existingValue: System.TimeOnly, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
460
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.Nullable_1<System.TimeOnly>>, existingValue: System.Nullable_1<System.TimeOnly>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
461
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.Nullable_1<System.TimeOnly>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System.TimeOnly>, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
462
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<System.Nullable_1<System.TimeOnly>>, existingValue: System.Nullable_1<System.TimeOnly>, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
463
|
+
CreateBinder(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<System.Nullable_1<System.TimeOnly>, System_Threading_Tasks.Task>, existingValue: System.Nullable_1<System.TimeOnly>, format: string, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
464
|
+
CreateBinder<T>(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Action_1<T>, existingValue: T, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
465
|
+
CreateBinder<T>(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, setter: System.Func_2<T, System_Threading_Tasks.Task>, existingValue: T, culture?: System_Globalization.CultureInfo): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components.ChangeEventArgs>>;
|
|
466
|
+
FocusAsync(this: Microsoft_AspNetCore_Components.ElementReference): Rewrap<this, System_Threading_Tasks.ValueTask>;
|
|
467
|
+
FocusAsync(this: Microsoft_AspNetCore_Components.ElementReference, preventScroll: boolean): Rewrap<this, System_Threading_Tasks.ValueTask>;
|
|
468
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: boolean): Rewrap<this, string>;
|
|
469
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, string>;
|
|
470
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: System.DateTime): Rewrap<this, string>;
|
|
471
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: System.Nullable_1<System.DateTime>): Rewrap<this, string>;
|
|
472
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: System.DateOnly): Rewrap<this, string>;
|
|
473
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: System.Nullable_1<System.DateOnly>): Rewrap<this, string>;
|
|
474
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: System.TimeOnly): Rewrap<this, string>;
|
|
475
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: System.Nullable_1<System.TimeOnly>): Rewrap<this, string>;
|
|
476
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: decimal): Rewrap<this, string>;
|
|
477
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: System.Nullable_1<System_Internal.Decimal>): Rewrap<this, string>;
|
|
478
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: double): Rewrap<this, string>;
|
|
479
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: System.Nullable_1<System_Internal.Double>): Rewrap<this, string>;
|
|
480
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: float): Rewrap<this, string>;
|
|
481
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: System.Nullable_1<System_Internal.Single>): Rewrap<this, string>;
|
|
482
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: System.Guid): Rewrap<this, string>;
|
|
483
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: System.Nullable_1<System.Guid>): Rewrap<this, string>;
|
|
484
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: int): Rewrap<this, string>;
|
|
485
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: System.Nullable_1<System_Internal.Int32>): Rewrap<this, string>;
|
|
486
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: long): Rewrap<this, string>;
|
|
487
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: System.Nullable_1<System_Internal.Int64>): Rewrap<this, string>;
|
|
488
|
+
GetUriWithQueryParameter(this: Microsoft_AspNetCore_Components.NavigationManager, name: string, value: string): Rewrap<this, string>;
|
|
489
|
+
GetUriWithQueryParameters(this: Microsoft_AspNetCore_Components.NavigationManager, parameters: System_Collections_Generic.IReadOnlyDictionary_2<System_Internal.String, unknown>): Rewrap<this, string>;
|
|
490
|
+
GetUriWithQueryParameters(this: Microsoft_AspNetCore_Components.NavigationManager, uri: string, parameters: System_Collections_Generic.IReadOnlyDictionary_2<System_Internal.String, unknown>): Rewrap<this, string>;
|
|
491
|
+
}
|
|
1655
492
|
|
|
1656
493
|
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Components
|
|
1657
|
-
type __TsonicExtSurface_Microsoft_AspNetCore_Components<TShape> =
|
|
1658
|
-
(
|
|
1659
|
-
(TShape extends Microsoft_AspNetCore_Components.ElementReference ? __Ext_Microsoft_AspNetCore_Components_ElementReference : {}) & (TShape extends Microsoft_AspNetCore_Components.EventCallbackFactory ? __Ext_Microsoft_AspNetCore_Components_EventCallbackFactory : {}) & (TShape extends Microsoft_AspNetCore_Components.NavigationManager ? __Ext_Microsoft_AspNetCore_Components_NavigationManager : {}) & (TShape extends Microsoft_Extensions_DependencyInjection.IServiceCollection ? __Ext_Microsoft_AspNetCore_Components_IServiceCollection : {})
|
|
1660
|
-
);
|
|
1661
|
-
|
|
1662
494
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Components {
|
|
1663
495
|
__tsonic_shape: unknown;
|
|
1664
|
-
__tsonic_type:
|
|
496
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Components;
|
|
1665
497
|
}
|
|
1666
498
|
|
|
1667
499
|
export type ExtensionMethods_Microsoft_AspNetCore_Components<TShape> =
|
|
1668
500
|
TShape extends null | undefined ? TShape
|
|
1669
501
|
: TShape extends void ? void
|
|
1670
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Components", __TsonicExtApplier_Microsoft_AspNetCore_Components> &
|
|
502
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Components", __TsonicExtApplier_Microsoft_AspNetCore_Components> & __TsonicExtMethods_Microsoft_AspNetCore_Components;
|
|
1671
503
|
|
|
1672
|
-
//
|
|
1673
|
-
|
|
1674
|
-
(
|
|
1675
|
-
|
|
1676
|
-
)
|
|
504
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Components.Forms
|
|
505
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Components_Forms {
|
|
506
|
+
AddDataAnnotationsValidation(this: Microsoft_AspNetCore_Components_Forms.EditContext): Rewrap<this, Microsoft_AspNetCore_Components_Forms.EditContext>;
|
|
507
|
+
EnableDataAnnotationsValidation(this: Microsoft_AspNetCore_Components_Forms.EditContext): Rewrap<this, System.IDisposable>;
|
|
508
|
+
EnableDataAnnotationsValidation(this: Microsoft_AspNetCore_Components_Forms.EditContext, serviceProvider: System.IServiceProvider): Rewrap<this, System.IDisposable>;
|
|
509
|
+
FieldCssClass<TField>(this: Microsoft_AspNetCore_Components_Forms.EditContext, accessor: System_Linq_Expressions.Expression_1<System.Func_1<TField>>): Rewrap<this, string>;
|
|
510
|
+
FieldCssClass(this: Microsoft_AspNetCore_Components_Forms.EditContext, fieldIdentifier: Microsoft_AspNetCore_Components_Forms.FieldIdentifier): Rewrap<this, string>;
|
|
511
|
+
RequestImageFileAsync(this: Microsoft_AspNetCore_Components_Forms.IBrowserFile, format: string, maxWidth: int, maxHeight: int): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_AspNetCore_Components_Forms.IBrowserFile>>;
|
|
512
|
+
SetFieldCssClassProvider(this: Microsoft_AspNetCore_Components_Forms.EditContext, fieldCssClassProvider: Microsoft_AspNetCore_Components_Forms.FieldCssClassProvider): Rewrap<this, void>;
|
|
513
|
+
}
|
|
1677
514
|
|
|
515
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Components.Forms
|
|
1678
516
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Components_Forms {
|
|
1679
517
|
__tsonic_shape: unknown;
|
|
1680
|
-
__tsonic_type:
|
|
518
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Components_Forms;
|
|
1681
519
|
}
|
|
1682
520
|
|
|
1683
521
|
export type ExtensionMethods_Microsoft_AspNetCore_Components_Forms<TShape> =
|
|
1684
522
|
TShape extends null | undefined ? TShape
|
|
1685
523
|
: TShape extends void ? void
|
|
1686
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Components.Forms", __TsonicExtApplier_Microsoft_AspNetCore_Components_Forms> &
|
|
524
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Components.Forms", __TsonicExtApplier_Microsoft_AspNetCore_Components_Forms> & __TsonicExtMethods_Microsoft_AspNetCore_Components_Forms;
|
|
1687
525
|
|
|
1688
|
-
//
|
|
1689
|
-
|
|
1690
|
-
(
|
|
1691
|
-
|
|
1692
|
-
);
|
|
526
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Components.Forms.Mapping
|
|
527
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Components_Forms_Mapping {
|
|
528
|
+
AddSupplyValueFromFormProvider(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
529
|
+
}
|
|
1693
530
|
|
|
531
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Components.Forms.Mapping
|
|
1694
532
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Components_Forms_Mapping {
|
|
1695
533
|
__tsonic_shape: unknown;
|
|
1696
|
-
__tsonic_type:
|
|
534
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Components_Forms_Mapping;
|
|
1697
535
|
}
|
|
1698
536
|
|
|
1699
537
|
export type ExtensionMethods_Microsoft_AspNetCore_Components_Forms_Mapping<TShape> =
|
|
1700
538
|
TShape extends null | undefined ? TShape
|
|
1701
539
|
: TShape extends void ? void
|
|
1702
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Components.Forms.Mapping", __TsonicExtApplier_Microsoft_AspNetCore_Components_Forms_Mapping> &
|
|
540
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Components.Forms.Mapping", __TsonicExtApplier_Microsoft_AspNetCore_Components_Forms_Mapping> & __TsonicExtMethods_Microsoft_AspNetCore_Components_Forms_Mapping;
|
|
1703
541
|
|
|
1704
|
-
//
|
|
1705
|
-
|
|
1706
|
-
(
|
|
1707
|
-
|
|
1708
|
-
);
|
|
542
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Components.Infrastructure
|
|
543
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Components_Infrastructure {
|
|
544
|
+
AddSupplyValueFromPersistentComponentStateProvider(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
545
|
+
}
|
|
1709
546
|
|
|
547
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Components.Infrastructure
|
|
1710
548
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Components_Infrastructure {
|
|
1711
549
|
__tsonic_shape: unknown;
|
|
1712
|
-
__tsonic_type:
|
|
550
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Components_Infrastructure;
|
|
1713
551
|
}
|
|
1714
552
|
|
|
1715
553
|
export type ExtensionMethods_Microsoft_AspNetCore_Components_Infrastructure<TShape> =
|
|
1716
554
|
TShape extends null | undefined ? TShape
|
|
1717
555
|
: TShape extends void ? void
|
|
1718
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Components.Infrastructure", __TsonicExtApplier_Microsoft_AspNetCore_Components_Infrastructure> &
|
|
556
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Components.Infrastructure", __TsonicExtApplier_Microsoft_AspNetCore_Components_Infrastructure> & __TsonicExtMethods_Microsoft_AspNetCore_Components_Infrastructure;
|
|
1719
557
|
|
|
1720
|
-
//
|
|
1721
|
-
|
|
1722
|
-
(
|
|
1723
|
-
|
|
1724
|
-
);
|
|
558
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Components.Routing
|
|
559
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Components_Routing {
|
|
560
|
+
AcceptsInteractiveRouting(this: Microsoft_AspNetCore_Http.HttpContext): Rewrap<this, boolean>;
|
|
561
|
+
}
|
|
1725
562
|
|
|
563
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Components.Routing
|
|
1726
564
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Components_Routing {
|
|
1727
565
|
__tsonic_shape: unknown;
|
|
1728
|
-
__tsonic_type:
|
|
566
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Components_Routing;
|
|
1729
567
|
}
|
|
1730
568
|
|
|
1731
569
|
export type ExtensionMethods_Microsoft_AspNetCore_Components_Routing<TShape> =
|
|
1732
570
|
TShape extends null | undefined ? TShape
|
|
1733
571
|
: TShape extends void ? void
|
|
1734
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Components.Routing", __TsonicExtApplier_Microsoft_AspNetCore_Components_Routing> &
|
|
572
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Components.Routing", __TsonicExtApplier_Microsoft_AspNetCore_Components_Routing> & __TsonicExtMethods_Microsoft_AspNetCore_Components_Routing;
|
|
573
|
+
|
|
574
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Components.Web
|
|
575
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Components_Web {
|
|
576
|
+
AddEventPreventDefaultAttribute(this: Microsoft_AspNetCore_Components_Rendering.RenderTreeBuilder, sequence: int, eventName: string, value: boolean): Rewrap<this, void>;
|
|
577
|
+
AddEventStopPropagationAttribute(this: Microsoft_AspNetCore_Components_Rendering.RenderTreeBuilder, sequence: int, eventName: string, value: boolean): Rewrap<this, void>;
|
|
578
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components_Web.ClipboardEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.ClipboardEventArgs>>;
|
|
579
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components_Web.ClipboardEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.ClipboardEventArgs>>;
|
|
580
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components_Web.DragEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.DragEventArgs>>;
|
|
581
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components_Web.DragEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.DragEventArgs>>;
|
|
582
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components_Web.ErrorEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.ErrorEventArgs>>;
|
|
583
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components_Web.ErrorEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.ErrorEventArgs>>;
|
|
584
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components_Web.FocusEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.FocusEventArgs>>;
|
|
585
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components_Web.FocusEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.FocusEventArgs>>;
|
|
586
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components_Web.KeyboardEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.KeyboardEventArgs>>;
|
|
587
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components_Web.KeyboardEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.KeyboardEventArgs>>;
|
|
588
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components_Web.MouseEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.MouseEventArgs>>;
|
|
589
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components_Web.MouseEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.MouseEventArgs>>;
|
|
590
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components_Web.PointerEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.PointerEventArgs>>;
|
|
591
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components_Web.PointerEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.PointerEventArgs>>;
|
|
592
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components_Web.ProgressEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.ProgressEventArgs>>;
|
|
593
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components_Web.ProgressEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.ProgressEventArgs>>;
|
|
594
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components_Web.TouchEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.TouchEventArgs>>;
|
|
595
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components_Web.TouchEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.TouchEventArgs>>;
|
|
596
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Action_1<Microsoft_AspNetCore_Components_Web.WheelEventArgs>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.WheelEventArgs>>;
|
|
597
|
+
Create(this: Microsoft_AspNetCore_Components.EventCallbackFactory, receiver: unknown, callback: System.Func_2<Microsoft_AspNetCore_Components_Web.WheelEventArgs, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Components.EventCallback_1<Microsoft_AspNetCore_Components_Web.WheelEventArgs>>;
|
|
598
|
+
RegisterForJavaScript<TComponent>(this: Microsoft_AspNetCore_Components_Web.IJSComponentConfiguration, identifier: string): Rewrap<this, void>;
|
|
599
|
+
RegisterForJavaScript<TComponent>(this: Microsoft_AspNetCore_Components_Web.IJSComponentConfiguration, identifier: string, javaScriptInitializer: string): Rewrap<this, void>;
|
|
600
|
+
RegisterForJavaScript(this: Microsoft_AspNetCore_Components_Web.IJSComponentConfiguration, componentType: System.Type, identifier: string): Rewrap<this, void>;
|
|
601
|
+
RegisterForJavaScript(this: Microsoft_AspNetCore_Components_Web.IJSComponentConfiguration, componentType: System.Type, identifier: string, javaScriptInitializer: string): Rewrap<this, void>;
|
|
602
|
+
}
|
|
1735
603
|
|
|
1736
604
|
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Components.Web
|
|
1737
|
-
type __TsonicExtSurface_Microsoft_AspNetCore_Components_Web<TShape> =
|
|
1738
|
-
(
|
|
1739
|
-
(TShape extends Microsoft_AspNetCore_Components.EventCallbackFactory ? __Ext_Microsoft_AspNetCore_Components_Web_EventCallbackFactory : {}) & (TShape extends Microsoft_AspNetCore_Components_Rendering.RenderTreeBuilder ? __Ext_Microsoft_AspNetCore_Components_Web_RenderTreeBuilder : {}) & (TShape extends Microsoft_AspNetCore_Components_Web.IJSComponentConfiguration ? __Ext_Microsoft_AspNetCore_Components_Web_IJSComponentConfiguration : {})
|
|
1740
|
-
);
|
|
1741
|
-
|
|
1742
605
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Components_Web {
|
|
1743
606
|
__tsonic_shape: unknown;
|
|
1744
|
-
__tsonic_type:
|
|
607
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Components_Web;
|
|
1745
608
|
}
|
|
1746
609
|
|
|
1747
610
|
export type ExtensionMethods_Microsoft_AspNetCore_Components_Web<TShape> =
|
|
1748
611
|
TShape extends null | undefined ? TShape
|
|
1749
612
|
: TShape extends void ? void
|
|
1750
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Components.Web", __TsonicExtApplier_Microsoft_AspNetCore_Components_Web> &
|
|
613
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Components.Web", __TsonicExtApplier_Microsoft_AspNetCore_Components_Web> & __TsonicExtMethods_Microsoft_AspNetCore_Components_Web;
|
|
1751
614
|
|
|
1752
|
-
//
|
|
1753
|
-
|
|
1754
|
-
(
|
|
1755
|
-
|
|
1756
|
-
)
|
|
615
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Connections
|
|
616
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Connections {
|
|
617
|
+
Run(this: Microsoft_AspNetCore_Connections.IConnectionBuilder, middleware: System.Func_2<Microsoft_AspNetCore_Connections.ConnectionContext, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Connections.IConnectionBuilder>;
|
|
618
|
+
Use(this: Microsoft_AspNetCore_Connections.IConnectionBuilder, middleware: System.Func_3<Microsoft_AspNetCore_Connections.ConnectionContext, System.Func_1<System_Threading_Tasks.Task>, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Connections.IConnectionBuilder>;
|
|
619
|
+
Use(this: Microsoft_AspNetCore_Connections.IConnectionBuilder, middleware: System.Func_3<Microsoft_AspNetCore_Connections.ConnectionContext, Microsoft_AspNetCore_Connections.ConnectionDelegate, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Connections.IConnectionBuilder>;
|
|
620
|
+
UseConnectionHandler<TConnectionHandler>(this: Microsoft_AspNetCore_Connections.IConnectionBuilder): Rewrap<this, Microsoft_AspNetCore_Connections.IConnectionBuilder>;
|
|
621
|
+
}
|
|
1757
622
|
|
|
623
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Connections
|
|
1758
624
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Connections {
|
|
1759
625
|
__tsonic_shape: unknown;
|
|
1760
|
-
__tsonic_type:
|
|
626
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Connections;
|
|
1761
627
|
}
|
|
1762
628
|
|
|
1763
629
|
export type ExtensionMethods_Microsoft_AspNetCore_Connections<TShape> =
|
|
1764
630
|
TShape extends null | undefined ? TShape
|
|
1765
631
|
: TShape extends void ? void
|
|
1766
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Connections", __TsonicExtApplier_Microsoft_AspNetCore_Connections> &
|
|
632
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Connections", __TsonicExtApplier_Microsoft_AspNetCore_Connections> & __TsonicExtMethods_Microsoft_AspNetCore_Connections;
|
|
633
|
+
|
|
634
|
+
// Extension method table for namespace: Microsoft.AspNetCore.DataProtection
|
|
635
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_DataProtection {
|
|
636
|
+
AddKeyEscrowSink(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder, sink: Microsoft_AspNetCore_DataProtection_KeyManagement.IKeyEscrowSink): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
637
|
+
AddKeyEscrowSink<TImplementation>(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
638
|
+
AddKeyEscrowSink(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder, factory: System.Func_2<System.IServiceProvider, Microsoft_AspNetCore_DataProtection_KeyManagement.IKeyEscrowSink>): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
639
|
+
AddKeyManagementOptions(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_DataProtection_KeyManagement.KeyManagementOptions>): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
640
|
+
CreateProtector(this: Microsoft_AspNetCore_DataProtection.IDataProtectionProvider, purposes: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtector>;
|
|
641
|
+
CreateProtector(this: Microsoft_AspNetCore_DataProtection.IDataProtectionProvider, purpose: string, ...subPurposes: string[]): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtector>;
|
|
642
|
+
DisableAutomaticKeyGeneration(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
643
|
+
GetApplicationUniqueIdentifier(this: System.IServiceProvider): Rewrap<this, string | undefined>;
|
|
644
|
+
GetDataProtectionProvider(this: System.IServiceProvider): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionProvider>;
|
|
645
|
+
GetDataProtector(this: System.IServiceProvider, purposes: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtector>;
|
|
646
|
+
GetDataProtector(this: System.IServiceProvider, purpose: string, ...subPurposes: string[]): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtector>;
|
|
647
|
+
PersistKeysToFileSystem(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder, directory: System_IO.DirectoryInfo): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
648
|
+
PersistKeysToRegistry(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder, registryKey: Microsoft_Win32.RegistryKey): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
649
|
+
Protect(this: Microsoft_AspNetCore_DataProtection.ITimeLimitedDataProtector, plaintext: byte[], lifetime: System.TimeSpan): Rewrap<this, byte[]>;
|
|
650
|
+
Protect(this: Microsoft_AspNetCore_DataProtection.ITimeLimitedDataProtector, plaintext: string, expiration: System.DateTimeOffset): Rewrap<this, string>;
|
|
651
|
+
Protect(this: Microsoft_AspNetCore_DataProtection.ITimeLimitedDataProtector, plaintext: string, lifetime: System.TimeSpan): Rewrap<this, string>;
|
|
652
|
+
Protect(this: Microsoft_AspNetCore_DataProtection.IDataProtector, plaintext: string): Rewrap<this, string>;
|
|
653
|
+
ProtectKeysWithCertificate(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder, certificate: System_Security_Cryptography_X509Certificates.X509Certificate2): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
654
|
+
ProtectKeysWithCertificate(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder, thumbprint: string): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
655
|
+
ProtectKeysWithDpapi(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
656
|
+
ProtectKeysWithDpapi(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder, protectToLocalMachine: boolean): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
657
|
+
ProtectKeysWithDpapiNG(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
658
|
+
ProtectKeysWithDpapiNG(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder, protectionDescriptorRule: string, flags: Microsoft_AspNetCore_DataProtection_XmlEncryption.DpapiNGProtectionDescriptorFlags): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
659
|
+
SetApplicationName(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder, applicationName: string): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
660
|
+
SetDefaultKeyLifetime(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder, lifetime: System.TimeSpan): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
661
|
+
ToTimeLimitedDataProtector(this: Microsoft_AspNetCore_DataProtection.IDataProtector): Rewrap<this, Microsoft_AspNetCore_DataProtection.ITimeLimitedDataProtector>;
|
|
662
|
+
Unprotect(this: Microsoft_AspNetCore_DataProtection.ITimeLimitedDataProtector, protectedData: string, expiration: System.DateTimeOffset): Rewrap<this, string>;
|
|
663
|
+
Unprotect(this: Microsoft_AspNetCore_DataProtection.IDataProtector, protectedData: string): Rewrap<this, string>;
|
|
664
|
+
UnprotectKeysWithAnyCertificate(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder, ...certificates: System_Security_Cryptography_X509Certificates.X509Certificate2[]): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
665
|
+
UseCryptographicAlgorithms(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder, configuration: Microsoft_AspNetCore_DataProtection_AuthenticatedEncryption_ConfigurationModel.AuthenticatedEncryptorConfiguration): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
666
|
+
UseCustomCryptographicAlgorithms(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder, configuration: Microsoft_AspNetCore_DataProtection_AuthenticatedEncryption_ConfigurationModel.CngCbcAuthenticatedEncryptorConfiguration): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
667
|
+
UseCustomCryptographicAlgorithms(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder, configuration: Microsoft_AspNetCore_DataProtection_AuthenticatedEncryption_ConfigurationModel.CngGcmAuthenticatedEncryptorConfiguration): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
668
|
+
UseCustomCryptographicAlgorithms(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder, configuration: Microsoft_AspNetCore_DataProtection_AuthenticatedEncryption_ConfigurationModel.ManagedAuthenticatedEncryptorConfiguration): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
669
|
+
UseEphemeralDataProtectionProvider(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
670
|
+
}
|
|
1767
671
|
|
|
1768
672
|
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.DataProtection
|
|
1769
|
-
type __TsonicExtSurface_Microsoft_AspNetCore_DataProtection<TShape> =
|
|
1770
|
-
(
|
|
1771
|
-
(TShape extends Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder ? __Ext_Microsoft_AspNetCore_DataProtection_IDataProtectionBuilder : {}) & (TShape extends Microsoft_AspNetCore_DataProtection.IDataProtectionProvider ? __Ext_Microsoft_AspNetCore_DataProtection_IDataProtectionProvider : {}) & (TShape extends Microsoft_AspNetCore_DataProtection.IDataProtector ? (TShape extends Microsoft_AspNetCore_DataProtection.ITimeLimitedDataProtector ? {} : __Ext_Microsoft_AspNetCore_DataProtection_IDataProtector) : {}) & (TShape extends Microsoft_AspNetCore_DataProtection.ITimeLimitedDataProtector ? __Ext_Microsoft_AspNetCore_DataProtection_ITimeLimitedDataProtector : {}) & (TShape extends System.IServiceProvider ? __Ext_Microsoft_AspNetCore_DataProtection_IServiceProvider : {})
|
|
1772
|
-
);
|
|
1773
|
-
|
|
1774
673
|
interface __TsonicExtApplier_Microsoft_AspNetCore_DataProtection {
|
|
1775
674
|
__tsonic_shape: unknown;
|
|
1776
|
-
__tsonic_type:
|
|
675
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_DataProtection;
|
|
1777
676
|
}
|
|
1778
677
|
|
|
1779
678
|
export type ExtensionMethods_Microsoft_AspNetCore_DataProtection<TShape> =
|
|
1780
679
|
TShape extends null | undefined ? TShape
|
|
1781
680
|
: TShape extends void ? void
|
|
1782
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.DataProtection", __TsonicExtApplier_Microsoft_AspNetCore_DataProtection> &
|
|
681
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.DataProtection", __TsonicExtApplier_Microsoft_AspNetCore_DataProtection> & __TsonicExtMethods_Microsoft_AspNetCore_DataProtection;
|
|
1783
682
|
|
|
1784
|
-
//
|
|
1785
|
-
|
|
1786
|
-
(
|
|
1787
|
-
|
|
1788
|
-
);
|
|
683
|
+
// Extension method table for namespace: Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel
|
|
684
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_DataProtection_AuthenticatedEncryption_ConfigurationModel {
|
|
685
|
+
MarkAsRequiresEncryption(this: System_Xml_Linq.XElement): Rewrap<this, void>;
|
|
686
|
+
}
|
|
1789
687
|
|
|
688
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel
|
|
1790
689
|
interface __TsonicExtApplier_Microsoft_AspNetCore_DataProtection_AuthenticatedEncryption_ConfigurationModel {
|
|
1791
690
|
__tsonic_shape: unknown;
|
|
1792
|
-
__tsonic_type:
|
|
691
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_DataProtection_AuthenticatedEncryption_ConfigurationModel;
|
|
1793
692
|
}
|
|
1794
693
|
|
|
1795
694
|
export type ExtensionMethods_Microsoft_AspNetCore_DataProtection_AuthenticatedEncryption_ConfigurationModel<TShape> =
|
|
1796
695
|
TShape extends null | undefined ? TShape
|
|
1797
696
|
: TShape extends void ? void
|
|
1798
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel", __TsonicExtApplier_Microsoft_AspNetCore_DataProtection_AuthenticatedEncryption_ConfigurationModel> &
|
|
697
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel", __TsonicExtApplier_Microsoft_AspNetCore_DataProtection_AuthenticatedEncryption_ConfigurationModel> & __TsonicExtMethods_Microsoft_AspNetCore_DataProtection_AuthenticatedEncryption_ConfigurationModel;
|
|
698
|
+
|
|
699
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Hosting
|
|
700
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Hosting {
|
|
701
|
+
CaptureStartupErrors(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, captureStartupErrors: boolean): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
702
|
+
Configure(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, configureApp: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
703
|
+
Configure(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, configureApp: System.Action_2<Microsoft_AspNetCore_Hosting.WebHostBuilderContext, Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
704
|
+
ConfigureAppConfiguration(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, configureDelegate: System.Action_1<Microsoft_Extensions_Configuration.IConfigurationBuilder>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
705
|
+
ConfigureKestrel(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, options: System.Action_1<Microsoft_AspNetCore_Server_Kestrel_Core.KestrelServerOptions>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
706
|
+
ConfigureKestrel(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, configureOptions: System.Action_2<Microsoft_AspNetCore_Hosting.WebHostBuilderContext, Microsoft_AspNetCore_Server_Kestrel_Core.KestrelServerOptions>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
707
|
+
ConfigureLogging(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, configureLogging: System.Action_1<Microsoft_Extensions_Logging.ILoggingBuilder>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
708
|
+
ConfigureLogging(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, configureLogging: System.Action_2<Microsoft_AspNetCore_Hosting.WebHostBuilderContext, Microsoft_Extensions_Logging.ILoggingBuilder>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
709
|
+
IsDevelopment(this: Microsoft_AspNetCore_Hosting.IHostingEnvironment): Rewrap<this, boolean>;
|
|
710
|
+
IsEnvironment(this: Microsoft_AspNetCore_Hosting.IHostingEnvironment, environmentName: string): Rewrap<this, boolean>;
|
|
711
|
+
IsProduction(this: Microsoft_AspNetCore_Hosting.IHostingEnvironment): Rewrap<this, boolean>;
|
|
712
|
+
IsStaging(this: Microsoft_AspNetCore_Hosting.IHostingEnvironment): Rewrap<this, boolean>;
|
|
713
|
+
PreferHostingUrls(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, preferHostingUrls: boolean): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
714
|
+
Run(this: Microsoft_AspNetCore_Hosting.IWebHost): Rewrap<this, void>;
|
|
715
|
+
RunAsync(this: Microsoft_AspNetCore_Hosting.IWebHost, token?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
716
|
+
Start(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, ...urls: string[]): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHost>;
|
|
717
|
+
StopAsync(this: Microsoft_AspNetCore_Hosting.IWebHost, timeout: System.TimeSpan): Rewrap<this, System_Threading_Tasks.Task>;
|
|
718
|
+
SuppressStatusMessages(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, suppressStatusMessages: boolean): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
719
|
+
UseConfiguration(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, configuration: Microsoft_Extensions_Configuration.IConfiguration): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
720
|
+
UseConnectionLogging(this: Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
721
|
+
UseConnectionLogging(this: Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions, loggerName: string): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
722
|
+
UseContentRoot(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, contentRoot: string): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
723
|
+
UseDefaultServiceProvider(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, configure: System.Action_1<Microsoft_Extensions_DependencyInjection.ServiceProviderOptions>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
724
|
+
UseDefaultServiceProvider(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, configure: System.Action_2<Microsoft_AspNetCore_Hosting.WebHostBuilderContext, Microsoft_Extensions_DependencyInjection.ServiceProviderOptions>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
725
|
+
UseEnvironment(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, environment: string): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
726
|
+
UseHttpSys(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
727
|
+
UseHttpSys(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, options: System.Action_1<Microsoft_AspNetCore_Server_HttpSys.HttpSysOptions>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
728
|
+
UseHttps(this: Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
729
|
+
UseHttps(this: Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions, fileName: string): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
730
|
+
UseHttps(this: Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions, fileName: string, password: string): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
731
|
+
UseHttps(this: Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions, fileName: string, password: string, configureOptions: System.Action_1<Microsoft_AspNetCore_Server_Kestrel_Https.HttpsConnectionAdapterOptions>): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
732
|
+
UseHttps(this: Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions, storeName: System_Security_Cryptography_X509Certificates.StoreName, subject: string): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
733
|
+
UseHttps(this: Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions, storeName: System_Security_Cryptography_X509Certificates.StoreName, subject: string, allowInvalid: boolean): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
734
|
+
UseHttps(this: Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions, storeName: System_Security_Cryptography_X509Certificates.StoreName, subject: string, allowInvalid: boolean, location: System_Security_Cryptography_X509Certificates.StoreLocation): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
735
|
+
UseHttps(this: Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions, storeName: System_Security_Cryptography_X509Certificates.StoreName, subject: string, allowInvalid: boolean, location: System_Security_Cryptography_X509Certificates.StoreLocation, configureOptions: System.Action_1<Microsoft_AspNetCore_Server_Kestrel_Https.HttpsConnectionAdapterOptions>): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
736
|
+
UseHttps(this: Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions, serverCertificate: System_Security_Cryptography_X509Certificates.X509Certificate2): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
737
|
+
UseHttps(this: Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions, serverCertificate: System_Security_Cryptography_X509Certificates.X509Certificate2, configureOptions: System.Action_1<Microsoft_AspNetCore_Server_Kestrel_Https.HttpsConnectionAdapterOptions>): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
738
|
+
UseHttps(this: Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions, configureOptions: System.Action_1<Microsoft_AspNetCore_Server_Kestrel_Https.HttpsConnectionAdapterOptions>): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
739
|
+
UseHttps(this: Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions, httpsOptions: Microsoft_AspNetCore_Server_Kestrel_Https.HttpsConnectionAdapterOptions): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
740
|
+
UseHttps(this: Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions, serverOptionsSelectionCallback: System_Net_Security.ServerOptionsSelectionCallback, state: unknown): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
741
|
+
UseHttps(this: Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions, serverOptionsSelectionCallback: System_Net_Security.ServerOptionsSelectionCallback, state: unknown, handshakeTimeout: System.TimeSpan): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
742
|
+
UseHttps(this: Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions, callbackOptions: Microsoft_AspNetCore_Server_Kestrel_Https.TlsHandshakeCallbackOptions): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>;
|
|
743
|
+
UseIIS(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
744
|
+
UseIISIntegration(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
745
|
+
UseKestrel(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
746
|
+
UseKestrel(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, options: System.Action_1<Microsoft_AspNetCore_Server_Kestrel_Core.KestrelServerOptions>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
747
|
+
UseKestrel(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, configureOptions: System.Action_2<Microsoft_AspNetCore_Hosting.WebHostBuilderContext, Microsoft_AspNetCore_Server_Kestrel_Core.KestrelServerOptions>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
748
|
+
UseKestrelCore(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
749
|
+
UseKestrelHttpsConfiguration(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
750
|
+
UseNamedPipes(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
751
|
+
UseNamedPipes(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, configureOptions: System.Action_1<Microsoft_AspNetCore_Server_Kestrel_Transport_NamedPipes.NamedPipeTransportOptions>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
752
|
+
UseQuic(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
753
|
+
UseQuic(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, configureOptions: System.Action_1<Microsoft_AspNetCore_Server_Kestrel_Transport_Quic.QuicTransportOptions>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
754
|
+
UseServer(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, server: Microsoft_AspNetCore_Hosting_Server.IServer): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
755
|
+
UseShutdownTimeout(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, timeout: System.TimeSpan): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
756
|
+
UseSockets(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
757
|
+
UseSockets(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, configureOptions: System.Action_1<Microsoft_AspNetCore_Server_Kestrel_Transport_Sockets.SocketTransportOptions>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
758
|
+
UseStartup<TStartup>(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, startupFactory: System.Func_2<Microsoft_AspNetCore_Hosting.WebHostBuilderContext, TStartup>): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
759
|
+
UseStartup(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, startupType: System.Type): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
760
|
+
UseStartup<TStartup>(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
761
|
+
UseStartup(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, startupAssemblyName: string): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
762
|
+
UseStaticWebAssets(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
763
|
+
UseSystemd(this: Microsoft_AspNetCore_Server_Kestrel_Core.KestrelServerOptions): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.KestrelServerOptions>;
|
|
764
|
+
UseSystemd(this: Microsoft_AspNetCore_Server_Kestrel_Core.KestrelServerOptions, configure: System.Action_1<Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions>): Rewrap<this, Microsoft_AspNetCore_Server_Kestrel_Core.KestrelServerOptions>;
|
|
765
|
+
UseUrls(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, ...urls: string[]): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
766
|
+
UseWebRoot(this: Microsoft_AspNetCore_Hosting.IWebHostBuilder, webRoot: string): Rewrap<this, Microsoft_AspNetCore_Hosting.IWebHostBuilder>;
|
|
767
|
+
WaitForShutdown(this: Microsoft_AspNetCore_Hosting.IWebHost): Rewrap<this, void>;
|
|
768
|
+
WaitForShutdownAsync(this: Microsoft_AspNetCore_Hosting.IWebHost, token?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
769
|
+
}
|
|
1799
770
|
|
|
1800
771
|
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Hosting
|
|
1801
|
-
type __TsonicExtSurface_Microsoft_AspNetCore_Hosting<TShape> =
|
|
1802
|
-
(
|
|
1803
|
-
(TShape extends Microsoft_AspNetCore_Hosting.IHostingEnvironment ? __Ext_Microsoft_AspNetCore_Hosting_IHostingEnvironment : {}) & (TShape extends Microsoft_AspNetCore_Hosting.IWebHost ? __Ext_Microsoft_AspNetCore_Hosting_IWebHost : {}) & (TShape extends Microsoft_AspNetCore_Hosting.IWebHostBuilder ? __Ext_Microsoft_AspNetCore_Hosting_IWebHostBuilder : {}) & (TShape extends Microsoft_AspNetCore_Server_Kestrel_Core.KestrelServerOptions ? __Ext_Microsoft_AspNetCore_Hosting_KestrelServerOptions : {}) & (TShape extends Microsoft_AspNetCore_Server_Kestrel_Core.ListenOptions ? __Ext_Microsoft_AspNetCore_Hosting_ListenOptions : {})
|
|
1804
|
-
);
|
|
1805
|
-
|
|
1806
772
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Hosting {
|
|
1807
773
|
__tsonic_shape: unknown;
|
|
1808
|
-
__tsonic_type:
|
|
774
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Hosting;
|
|
1809
775
|
}
|
|
1810
776
|
|
|
1811
777
|
export type ExtensionMethods_Microsoft_AspNetCore_Hosting<TShape> =
|
|
1812
778
|
TShape extends null | undefined ? TShape
|
|
1813
779
|
: TShape extends void ? void
|
|
1814
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Hosting", __TsonicExtApplier_Microsoft_AspNetCore_Hosting> &
|
|
780
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Hosting", __TsonicExtApplier_Microsoft_AspNetCore_Hosting> & __TsonicExtMethods_Microsoft_AspNetCore_Hosting;
|
|
1815
781
|
|
|
1816
|
-
//
|
|
1817
|
-
|
|
1818
|
-
(
|
|
1819
|
-
|
|
1820
|
-
)
|
|
782
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Html
|
|
783
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Html {
|
|
784
|
+
AppendFormat(this: Microsoft_AspNetCore_Html.IHtmlContentBuilder, format: string, ...args: unknown[]): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContentBuilder>;
|
|
785
|
+
AppendFormat(this: Microsoft_AspNetCore_Html.IHtmlContentBuilder, formatProvider: System.IFormatProvider, format: string, ...args: unknown[]): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContentBuilder>;
|
|
786
|
+
AppendHtmlLine(this: Microsoft_AspNetCore_Html.IHtmlContentBuilder, encoded: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContentBuilder>;
|
|
787
|
+
AppendLine(this: Microsoft_AspNetCore_Html.IHtmlContentBuilder): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContentBuilder>;
|
|
788
|
+
AppendLine(this: Microsoft_AspNetCore_Html.IHtmlContentBuilder, unencoded: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContentBuilder>;
|
|
789
|
+
AppendLine(this: Microsoft_AspNetCore_Html.IHtmlContentBuilder, content: Microsoft_AspNetCore_Html.IHtmlContent): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContentBuilder>;
|
|
790
|
+
SetContent(this: Microsoft_AspNetCore_Html.IHtmlContentBuilder, unencoded: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContentBuilder>;
|
|
791
|
+
SetHtmlContent(this: Microsoft_AspNetCore_Html.IHtmlContentBuilder, content: Microsoft_AspNetCore_Html.IHtmlContent): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContentBuilder>;
|
|
792
|
+
SetHtmlContent(this: Microsoft_AspNetCore_Html.IHtmlContentBuilder, encoded: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContentBuilder>;
|
|
793
|
+
}
|
|
1821
794
|
|
|
795
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Html
|
|
1822
796
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Html {
|
|
1823
797
|
__tsonic_shape: unknown;
|
|
1824
|
-
__tsonic_type:
|
|
798
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Html;
|
|
1825
799
|
}
|
|
1826
800
|
|
|
1827
801
|
export type ExtensionMethods_Microsoft_AspNetCore_Html<TShape> =
|
|
1828
802
|
TShape extends null | undefined ? TShape
|
|
1829
803
|
: TShape extends void ? void
|
|
1830
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Html", __TsonicExtApplier_Microsoft_AspNetCore_Html> &
|
|
804
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Html", __TsonicExtApplier_Microsoft_AspNetCore_Html> & __TsonicExtMethods_Microsoft_AspNetCore_Html;
|
|
805
|
+
|
|
806
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Http
|
|
807
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Http {
|
|
808
|
+
Accepts<TRequest>(this: Microsoft_AspNetCore_Builder.RouteHandlerBuilder, contentType: string, ...additionalContentTypes: string[]): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
809
|
+
Accepts<TRequest>(this: Microsoft_AspNetCore_Builder.RouteHandlerBuilder, isOptional: boolean, contentType: string, ...additionalContentTypes: string[]): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
810
|
+
Accepts(this: Microsoft_AspNetCore_Builder.RouteHandlerBuilder, requestType: System.Type, contentType: string, ...additionalContentTypes: string[]): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
811
|
+
Accepts(this: Microsoft_AspNetCore_Builder.RouteHandlerBuilder, requestType: System.Type, isOptional: boolean, contentType: string, ...additionalContentTypes: string[]): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
812
|
+
AddEndpointFilter<TFilterType>(this: Microsoft_AspNetCore_Builder.RouteHandlerBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
813
|
+
AddEndpointFilter<TFilterType>(this: Microsoft_AspNetCore_Routing.RouteGroupBuilder): Rewrap<this, Microsoft_AspNetCore_Routing.RouteGroupBuilder>;
|
|
814
|
+
Append(this: Microsoft_AspNetCore_Http.IHeaderDictionary, key: string, value: Microsoft_Extensions_Primitives.StringValues): Rewrap<this, void>;
|
|
815
|
+
AppendCommaSeparatedValues(this: Microsoft_AspNetCore_Http.IHeaderDictionary, key: string, ...values: string[]): Rewrap<this, void>;
|
|
816
|
+
AppendList<T>(this: Microsoft_AspNetCore_Http.IHeaderDictionary, name: string, values: System_Collections_Generic.IList_1<T>): Rewrap<this, void>;
|
|
817
|
+
AppendTrailer(this: Microsoft_AspNetCore_Http.HttpResponse, trailerName: string, trailerValues: Microsoft_Extensions_Primitives.StringValues): Rewrap<this, void>;
|
|
818
|
+
CheckTrailersAvailable(this: Microsoft_AspNetCore_Http.HttpRequest): Rewrap<this, boolean>;
|
|
819
|
+
Clear(this: Microsoft_AspNetCore_Http.HttpResponse): Rewrap<this, void>;
|
|
820
|
+
DeclareTrailer(this: Microsoft_AspNetCore_Http.HttpResponse, trailerName: string): Rewrap<this, void>;
|
|
821
|
+
EnableBuffering(this: Microsoft_AspNetCore_Http.HttpRequest): Rewrap<this, void>;
|
|
822
|
+
EnableBuffering(this: Microsoft_AspNetCore_Http.HttpRequest, bufferThreshold: int): Rewrap<this, void>;
|
|
823
|
+
EnableBuffering(this: Microsoft_AspNetCore_Http.HttpRequest, bufferLimit: long): Rewrap<this, void>;
|
|
824
|
+
EnableBuffering(this: Microsoft_AspNetCore_Http.HttpRequest, bufferThreshold: int, bufferLimit: long): Rewrap<this, void>;
|
|
825
|
+
ExcludeFromDescription(this: Microsoft_AspNetCore_Builder.RouteHandlerBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
826
|
+
Get(this: Microsoft_AspNetCore_Http.ISession, key: string): Rewrap<this, byte[] | undefined>;
|
|
827
|
+
GetCommaSeparatedValues(this: Microsoft_AspNetCore_Http.IHeaderDictionary, key: string): Rewrap<this, string[]>;
|
|
828
|
+
GetDeclaredTrailers(this: Microsoft_AspNetCore_Http.HttpRequest): Rewrap<this, Microsoft_Extensions_Primitives.StringValues>;
|
|
829
|
+
GetEndpoint(this: Microsoft_AspNetCore_Http.HttpContext): Rewrap<this, Microsoft_AspNetCore_Http.Endpoint | undefined>;
|
|
830
|
+
GetInt32(this: Microsoft_AspNetCore_Http.ISession, key: string): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
831
|
+
GetServerVariable(this: Microsoft_AspNetCore_Http.HttpContext, variableName: string): Rewrap<this, string | undefined>;
|
|
832
|
+
GetString(this: Microsoft_AspNetCore_Http.ISession, key: string): Rewrap<this, string | undefined>;
|
|
833
|
+
GetTrailer(this: Microsoft_AspNetCore_Http.HttpRequest, trailerName: string): Rewrap<this, Microsoft_Extensions_Primitives.StringValues>;
|
|
834
|
+
GetTypedHeaders(this: Microsoft_AspNetCore_Http.HttpRequest): Rewrap<this, Microsoft_AspNetCore_Http_Headers.RequestHeaders>;
|
|
835
|
+
GetTypedHeaders(this: Microsoft_AspNetCore_Http.HttpResponse): Rewrap<this, Microsoft_AspNetCore_Http_Headers.ResponseHeaders>;
|
|
836
|
+
HasJsonContentType(this: Microsoft_AspNetCore_Http.HttpRequest): Rewrap<this, boolean>;
|
|
837
|
+
Produces<TResponse>(this: Microsoft_AspNetCore_Builder.RouteHandlerBuilder, statusCode?: int, contentType?: string, ...additionalContentTypes: string[]): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
838
|
+
Produces(this: Microsoft_AspNetCore_Builder.RouteHandlerBuilder, statusCode: int, responseType?: System.Type, contentType?: string, ...additionalContentTypes: string[]): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
839
|
+
ProducesProblem(this: Microsoft_AspNetCore_Builder.RouteHandlerBuilder, statusCode: int, contentType?: string): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
840
|
+
ProducesValidationProblem(this: Microsoft_AspNetCore_Builder.RouteHandlerBuilder, statusCode?: int, contentType?: string): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
841
|
+
ReadFormAsync(this: Microsoft_AspNetCore_Http.HttpRequest, options: Microsoft_AspNetCore_Http_Features.FormOptions, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Http.IFormCollection>>;
|
|
842
|
+
ReadFromJsonAsync<TValue>(this: Microsoft_AspNetCore_Http.HttpRequest, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
843
|
+
ReadFromJsonAsync<TValue>(this: Microsoft_AspNetCore_Http.HttpRequest, options: System_Text_Json.JsonSerializerOptions, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
844
|
+
ReadFromJsonAsync<TValue>(this: Microsoft_AspNetCore_Http.HttpRequest, jsonTypeInfo: System_Text_Json_Serialization_Metadata.JsonTypeInfo_1<TValue>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
845
|
+
ReadFromJsonAsync(this: Microsoft_AspNetCore_Http.HttpRequest, jsonTypeInfo: System_Text_Json_Serialization_Metadata.JsonTypeInfo, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<unknown>>;
|
|
846
|
+
ReadFromJsonAsync(this: Microsoft_AspNetCore_Http.HttpRequest, type: System.Type, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<unknown>>;
|
|
847
|
+
ReadFromJsonAsync(this: Microsoft_AspNetCore_Http.HttpRequest, type: System.Type, options: System_Text_Json.JsonSerializerOptions, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<unknown>>;
|
|
848
|
+
ReadFromJsonAsync(this: Microsoft_AspNetCore_Http.HttpRequest, type: System.Type, context: System_Text_Json_Serialization.JsonSerializerContext, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<unknown>>;
|
|
849
|
+
Redirect(this: Microsoft_AspNetCore_Http.HttpResponse, location: string, permanent: boolean, preserveMethod: boolean): Rewrap<this, void>;
|
|
850
|
+
SendFileAsync(this: Microsoft_AspNetCore_Http.HttpResponse, file: Microsoft_Extensions_FileProviders.IFileInfo, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
851
|
+
SendFileAsync(this: Microsoft_AspNetCore_Http.HttpResponse, file: Microsoft_Extensions_FileProviders.IFileInfo, offset: long, count: System.Nullable_1<System_Internal.Int64>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
852
|
+
SendFileAsync(this: Microsoft_AspNetCore_Http.HttpResponse, fileName: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
853
|
+
SendFileAsync(this: Microsoft_AspNetCore_Http.HttpResponse, fileName: string, offset: long, count: System.Nullable_1<System_Internal.Int64>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
854
|
+
SetCommaSeparatedValues(this: Microsoft_AspNetCore_Http.IHeaderDictionary, key: string, ...values: string[]): Rewrap<this, void>;
|
|
855
|
+
SetEndpoint(this: Microsoft_AspNetCore_Http.HttpContext, endpoint: Microsoft_AspNetCore_Http.Endpoint): Rewrap<this, void>;
|
|
856
|
+
SetInt32(this: Microsoft_AspNetCore_Http.ISession, key: string, value: int): Rewrap<this, void>;
|
|
857
|
+
SetString(this: Microsoft_AspNetCore_Http.ISession, key: string, value: string): Rewrap<this, void>;
|
|
858
|
+
SupportsTrailers(this: Microsoft_AspNetCore_Http.HttpRequest): Rewrap<this, boolean>;
|
|
859
|
+
SupportsTrailers(this: Microsoft_AspNetCore_Http.HttpResponse): Rewrap<this, boolean>;
|
|
860
|
+
WithTags(this: Microsoft_AspNetCore_Builder.RouteHandlerBuilder, ...tags: string[]): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
861
|
+
WriteAsJsonAsync<TValue>(this: Microsoft_AspNetCore_Http.HttpResponse, value: TValue, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
862
|
+
WriteAsJsonAsync<TValue>(this: Microsoft_AspNetCore_Http.HttpResponse, value: TValue, options: System_Text_Json.JsonSerializerOptions, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
863
|
+
WriteAsJsonAsync<TValue>(this: Microsoft_AspNetCore_Http.HttpResponse, value: TValue, options: System_Text_Json.JsonSerializerOptions, contentType: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
864
|
+
WriteAsJsonAsync<TValue>(this: Microsoft_AspNetCore_Http.HttpResponse, value: TValue, jsonTypeInfo: System_Text_Json_Serialization_Metadata.JsonTypeInfo_1<TValue>, contentType?: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
865
|
+
WriteAsJsonAsync(this: Microsoft_AspNetCore_Http.HttpResponse, value: unknown, jsonTypeInfo: System_Text_Json_Serialization_Metadata.JsonTypeInfo, contentType?: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
866
|
+
WriteAsJsonAsync(this: Microsoft_AspNetCore_Http.HttpResponse, value: unknown, type: System.Type, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
867
|
+
WriteAsJsonAsync(this: Microsoft_AspNetCore_Http.HttpResponse, value: unknown, type: System.Type, options: System_Text_Json.JsonSerializerOptions, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
868
|
+
WriteAsJsonAsync(this: Microsoft_AspNetCore_Http.HttpResponse, value: unknown, type: System.Type, options: System_Text_Json.JsonSerializerOptions, contentType: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
869
|
+
WriteAsJsonAsync(this: Microsoft_AspNetCore_Http.HttpResponse, value: unknown, type: System.Type, context: System_Text_Json_Serialization.JsonSerializerContext, contentType?: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
870
|
+
WriteAsync(this: Microsoft_AspNetCore_Http.HttpResponse, text: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
871
|
+
WriteAsync(this: Microsoft_AspNetCore_Http.HttpResponse, text: string, encoding: System_Text.Encoding, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
872
|
+
}
|
|
1831
873
|
|
|
1832
874
|
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Http
|
|
1833
|
-
type __TsonicExtSurface_Microsoft_AspNetCore_Http<TShape> =
|
|
1834
|
-
(
|
|
1835
|
-
(TShape extends Microsoft_AspNetCore_Builder.RouteHandlerBuilder ? __Ext_Microsoft_AspNetCore_Http_RouteHandlerBuilder : {}) & (TShape extends Microsoft_AspNetCore_Http.HttpContext ? __Ext_Microsoft_AspNetCore_Http_HttpContext : {}) & (TShape extends Microsoft_AspNetCore_Http.HttpRequest ? __Ext_Microsoft_AspNetCore_Http_HttpRequest : {}) & (TShape extends Microsoft_AspNetCore_Http.HttpResponse ? __Ext_Microsoft_AspNetCore_Http_HttpResponse : {}) & (TShape extends Microsoft_AspNetCore_Http.IHeaderDictionary ? __Ext_Microsoft_AspNetCore_Http_IHeaderDictionary : {}) & (TShape extends Microsoft_AspNetCore_Http.ISession ? __Ext_Microsoft_AspNetCore_Http_ISession : {}) & (TShape extends Microsoft_AspNetCore_Routing.RouteGroupBuilder ? __Ext_Microsoft_AspNetCore_Http_RouteGroupBuilder : {})
|
|
1836
|
-
);
|
|
1837
|
-
|
|
1838
875
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Http {
|
|
1839
876
|
__tsonic_shape: unknown;
|
|
1840
|
-
__tsonic_type:
|
|
877
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Http;
|
|
1841
878
|
}
|
|
1842
879
|
|
|
1843
880
|
export type ExtensionMethods_Microsoft_AspNetCore_Http<TShape> =
|
|
1844
881
|
TShape extends null | undefined ? TShape
|
|
1845
882
|
: TShape extends void ? void
|
|
1846
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Http", __TsonicExtApplier_Microsoft_AspNetCore_Http> &
|
|
883
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Http", __TsonicExtApplier_Microsoft_AspNetCore_Http> & __TsonicExtMethods_Microsoft_AspNetCore_Http;
|
|
1847
884
|
|
|
1848
|
-
//
|
|
1849
|
-
|
|
1850
|
-
(
|
|
1851
|
-
|
|
1852
|
-
);
|
|
885
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Http.Connections
|
|
886
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Http_Connections {
|
|
887
|
+
GetHttpContext(this: Microsoft_AspNetCore_Connections.ConnectionContext): Rewrap<this, Microsoft_AspNetCore_Http.HttpContext | undefined>;
|
|
888
|
+
}
|
|
1853
889
|
|
|
890
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Http.Connections
|
|
1854
891
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Http_Connections {
|
|
1855
892
|
__tsonic_shape: unknown;
|
|
1856
|
-
__tsonic_type:
|
|
893
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Http_Connections;
|
|
1857
894
|
}
|
|
1858
895
|
|
|
1859
896
|
export type ExtensionMethods_Microsoft_AspNetCore_Http_Connections<TShape> =
|
|
1860
897
|
TShape extends null | undefined ? TShape
|
|
1861
898
|
: TShape extends void ? void
|
|
1862
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Http.Connections", __TsonicExtApplier_Microsoft_AspNetCore_Http_Connections> &
|
|
899
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Http.Connections", __TsonicExtApplier_Microsoft_AspNetCore_Http_Connections> & __TsonicExtMethods_Microsoft_AspNetCore_Http_Connections;
|
|
1863
900
|
|
|
1864
|
-
//
|
|
1865
|
-
|
|
1866
|
-
(
|
|
1867
|
-
|
|
1868
|
-
)
|
|
901
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Http.Extensions
|
|
902
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Http_Extensions {
|
|
903
|
+
GetDisplayUrl(this: Microsoft_AspNetCore_Http.HttpRequest): Rewrap<this, string>;
|
|
904
|
+
GetEncodedPathAndQuery(this: Microsoft_AspNetCore_Http.HttpRequest): Rewrap<this, string>;
|
|
905
|
+
GetEncodedUrl(this: Microsoft_AspNetCore_Http.HttpRequest): Rewrap<this, string>;
|
|
906
|
+
GetMultipartBoundary(this: Microsoft_AspNetCore_Http.HttpRequest): Rewrap<this, string>;
|
|
907
|
+
}
|
|
1869
908
|
|
|
909
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Http.Extensions
|
|
1870
910
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Http_Extensions {
|
|
1871
911
|
__tsonic_shape: unknown;
|
|
1872
|
-
__tsonic_type:
|
|
912
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Http_Extensions;
|
|
1873
913
|
}
|
|
1874
914
|
|
|
1875
915
|
export type ExtensionMethods_Microsoft_AspNetCore_Http_Extensions<TShape> =
|
|
1876
916
|
TShape extends null | undefined ? TShape
|
|
1877
917
|
: TShape extends void ? void
|
|
1878
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Http.Extensions", __TsonicExtApplier_Microsoft_AspNetCore_Http_Extensions> &
|
|
918
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Http.Extensions", __TsonicExtApplier_Microsoft_AspNetCore_Http_Extensions> & __TsonicExtMethods_Microsoft_AspNetCore_Http_Extensions;
|
|
1879
919
|
|
|
1880
|
-
//
|
|
1881
|
-
|
|
1882
|
-
(
|
|
1883
|
-
|
|
1884
|
-
|
|
920
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Http.Features
|
|
921
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Http_Features {
|
|
922
|
+
GetRequiredFeature<TFeature>(this: Microsoft_AspNetCore_Http_Features.IFeatureCollection): Rewrap<this, TFeature>;
|
|
923
|
+
GetRequiredFeature(this: Microsoft_AspNetCore_Http_Features.IFeatureCollection, key: System.Type): Rewrap<this, unknown>;
|
|
924
|
+
}
|
|
1885
925
|
|
|
926
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Http.Features
|
|
1886
927
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Http_Features {
|
|
1887
928
|
__tsonic_shape: unknown;
|
|
1888
|
-
__tsonic_type:
|
|
929
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Http_Features;
|
|
1889
930
|
}
|
|
1890
931
|
|
|
1891
932
|
export type ExtensionMethods_Microsoft_AspNetCore_Http_Features<TShape> =
|
|
1892
933
|
TShape extends null | undefined ? TShape
|
|
1893
934
|
: TShape extends void ? void
|
|
1894
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Http.Features", __TsonicExtApplier_Microsoft_AspNetCore_Http_Features> &
|
|
935
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Http.Features", __TsonicExtApplier_Microsoft_AspNetCore_Http_Features> & __TsonicExtMethods_Microsoft_AspNetCore_Http_Features;
|
|
1895
936
|
|
|
1896
|
-
//
|
|
1897
|
-
|
|
1898
|
-
(
|
|
1899
|
-
|
|
1900
|
-
)
|
|
937
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Identity
|
|
938
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Identity {
|
|
939
|
+
AddApiEndpoints(this: Microsoft_AspNetCore_Identity.IdentityBuilder): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityBuilder>;
|
|
940
|
+
AddApplicationCookie(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<Microsoft_AspNetCore_Authentication_Cookies.CookieAuthenticationOptions>>;
|
|
941
|
+
AddDefaultTokenProviders(this: Microsoft_AspNetCore_Identity.IdentityBuilder): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityBuilder>;
|
|
942
|
+
AddExternalCookie(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<Microsoft_AspNetCore_Authentication_Cookies.CookieAuthenticationOptions>>;
|
|
943
|
+
AddIdentityCookies(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityCookiesBuilder>;
|
|
944
|
+
AddIdentityCookies(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder, configureCookies: System.Action_1<Microsoft_AspNetCore_Identity.IdentityCookiesBuilder>): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityCookiesBuilder>;
|
|
945
|
+
AddSignInManager(this: Microsoft_AspNetCore_Identity.IdentityBuilder): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityBuilder>;
|
|
946
|
+
AddTwoFactorRememberMeCookie(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<Microsoft_AspNetCore_Authentication_Cookies.CookieAuthenticationOptions>>;
|
|
947
|
+
AddTwoFactorUserIdCookie(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<Microsoft_AspNetCore_Authentication_Cookies.CookieAuthenticationOptions>>;
|
|
948
|
+
}
|
|
1901
949
|
|
|
950
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Identity
|
|
1902
951
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Identity {
|
|
1903
952
|
__tsonic_shape: unknown;
|
|
1904
|
-
__tsonic_type:
|
|
953
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Identity;
|
|
1905
954
|
}
|
|
1906
955
|
|
|
1907
956
|
export type ExtensionMethods_Microsoft_AspNetCore_Identity<TShape> =
|
|
1908
957
|
TShape extends null | undefined ? TShape
|
|
1909
958
|
: TShape extends void ? void
|
|
1910
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Identity", __TsonicExtApplier_Microsoft_AspNetCore_Identity> &
|
|
959
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Identity", __TsonicExtApplier_Microsoft_AspNetCore_Identity> & __TsonicExtMethods_Microsoft_AspNetCore_Identity;
|
|
960
|
+
|
|
961
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Mvc
|
|
962
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Mvc {
|
|
963
|
+
Action(this: Microsoft_AspNetCore_Mvc.IUrlHelper): Rewrap<this, string | undefined>;
|
|
964
|
+
Action(this: Microsoft_AspNetCore_Mvc.IUrlHelper, action: string): Rewrap<this, string | undefined>;
|
|
965
|
+
Action(this: Microsoft_AspNetCore_Mvc.IUrlHelper, action: string, values: unknown): Rewrap<this, string | undefined>;
|
|
966
|
+
Action(this: Microsoft_AspNetCore_Mvc.IUrlHelper, action: string, controller: string): Rewrap<this, string | undefined>;
|
|
967
|
+
Action(this: Microsoft_AspNetCore_Mvc.IUrlHelper, action: string, controller: string, values: unknown): Rewrap<this, string | undefined>;
|
|
968
|
+
Action(this: Microsoft_AspNetCore_Mvc.IUrlHelper, action: string, controller: string, values: unknown, protocol: string): Rewrap<this, string | undefined>;
|
|
969
|
+
Action(this: Microsoft_AspNetCore_Mvc.IUrlHelper, action: string, controller: string, values: unknown, protocol: string, host: string): Rewrap<this, string | undefined>;
|
|
970
|
+
Action(this: Microsoft_AspNetCore_Mvc.IUrlHelper, action: string, controller: string, values: unknown, protocol: string, host: string, fragment: string): Rewrap<this, string | undefined>;
|
|
971
|
+
ActionLink(this: Microsoft_AspNetCore_Mvc.IUrlHelper, action?: string, controller?: string, values?: unknown, protocol?: string, host?: string, fragment?: string): Rewrap<this, string | undefined>;
|
|
972
|
+
Page(this: Microsoft_AspNetCore_Mvc.IUrlHelper, pageName: string): Rewrap<this, string | undefined>;
|
|
973
|
+
Page(this: Microsoft_AspNetCore_Mvc.IUrlHelper, pageName: string, pageHandler: string): Rewrap<this, string | undefined>;
|
|
974
|
+
Page(this: Microsoft_AspNetCore_Mvc.IUrlHelper, pageName: string, values: unknown): Rewrap<this, string | undefined>;
|
|
975
|
+
Page(this: Microsoft_AspNetCore_Mvc.IUrlHelper, pageName: string, pageHandler: string, values: unknown): Rewrap<this, string | undefined>;
|
|
976
|
+
Page(this: Microsoft_AspNetCore_Mvc.IUrlHelper, pageName: string, pageHandler: string, values: unknown, protocol: string): Rewrap<this, string | undefined>;
|
|
977
|
+
Page(this: Microsoft_AspNetCore_Mvc.IUrlHelper, pageName: string, pageHandler: string, values: unknown, protocol: string, host: string): Rewrap<this, string | undefined>;
|
|
978
|
+
Page(this: Microsoft_AspNetCore_Mvc.IUrlHelper, pageName: string, pageHandler: string, values: unknown, protocol: string, host: string, fragment: string): Rewrap<this, string | undefined>;
|
|
979
|
+
PageLink(this: Microsoft_AspNetCore_Mvc.IUrlHelper, pageName?: string, pageHandler?: string, values?: unknown, protocol?: string, host?: string, fragment?: string): Rewrap<this, string | undefined>;
|
|
980
|
+
RouteUrl(this: Microsoft_AspNetCore_Mvc.IUrlHelper, values: unknown): Rewrap<this, string | undefined>;
|
|
981
|
+
RouteUrl(this: Microsoft_AspNetCore_Mvc.IUrlHelper, routeName: string): Rewrap<this, string | undefined>;
|
|
982
|
+
RouteUrl(this: Microsoft_AspNetCore_Mvc.IUrlHelper, routeName: string, values: unknown): Rewrap<this, string | undefined>;
|
|
983
|
+
RouteUrl(this: Microsoft_AspNetCore_Mvc.IUrlHelper, routeName: string, values: unknown, protocol: string): Rewrap<this, string | undefined>;
|
|
984
|
+
RouteUrl(this: Microsoft_AspNetCore_Mvc.IUrlHelper, routeName: string, values: unknown, protocol: string, host: string): Rewrap<this, string | undefined>;
|
|
985
|
+
RouteUrl(this: Microsoft_AspNetCore_Mvc.IUrlHelper, routeName: string, values: unknown, protocol: string, host: string, fragment: string): Rewrap<this, string | undefined>;
|
|
986
|
+
}
|
|
1911
987
|
|
|
1912
988
|
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Mvc
|
|
1913
|
-
type __TsonicExtSurface_Microsoft_AspNetCore_Mvc<TShape> =
|
|
1914
|
-
(
|
|
1915
|
-
(TShape extends Microsoft_AspNetCore_Mvc.IUrlHelper ? __Ext_Microsoft_AspNetCore_Mvc_IUrlHelper : {})
|
|
1916
|
-
);
|
|
1917
|
-
|
|
1918
989
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Mvc {
|
|
1919
990
|
__tsonic_shape: unknown;
|
|
1920
|
-
__tsonic_type:
|
|
991
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Mvc;
|
|
1921
992
|
}
|
|
1922
993
|
|
|
1923
994
|
export type ExtensionMethods_Microsoft_AspNetCore_Mvc<TShape> =
|
|
1924
995
|
TShape extends null | undefined ? TShape
|
|
1925
996
|
: TShape extends void ? void
|
|
1926
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc", __TsonicExtApplier_Microsoft_AspNetCore_Mvc> &
|
|
997
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc", __TsonicExtApplier_Microsoft_AspNetCore_Mvc> & __TsonicExtMethods_Microsoft_AspNetCore_Mvc;
|
|
1927
998
|
|
|
1928
|
-
//
|
|
1929
|
-
|
|
1930
|
-
(
|
|
1931
|
-
|
|
1932
|
-
|
|
999
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Mvc.Abstractions
|
|
1000
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Mvc_Abstractions {
|
|
1001
|
+
GetProperty<T>(this: Microsoft_AspNetCore_Mvc_Abstractions.ActionDescriptor): Rewrap<this, T | undefined>;
|
|
1002
|
+
SetProperty<T>(this: Microsoft_AspNetCore_Mvc_Abstractions.ActionDescriptor, value: T): Rewrap<this, void>;
|
|
1003
|
+
}
|
|
1933
1004
|
|
|
1005
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Mvc.Abstractions
|
|
1934
1006
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Mvc_Abstractions {
|
|
1935
1007
|
__tsonic_shape: unknown;
|
|
1936
|
-
__tsonic_type:
|
|
1008
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Mvc_Abstractions;
|
|
1937
1009
|
}
|
|
1938
1010
|
|
|
1939
1011
|
export type ExtensionMethods_Microsoft_AspNetCore_Mvc_Abstractions<TShape> =
|
|
1940
1012
|
TShape extends null | undefined ? TShape
|
|
1941
1013
|
: TShape extends void ? void
|
|
1942
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.Abstractions", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_Abstractions> &
|
|
1014
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.Abstractions", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_Abstractions> & __TsonicExtMethods_Microsoft_AspNetCore_Mvc_Abstractions;
|
|
1943
1015
|
|
|
1944
|
-
//
|
|
1945
|
-
|
|
1946
|
-
(
|
|
1947
|
-
|
|
1948
|
-
|
|
1016
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Mvc.ApiExplorer
|
|
1017
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Mvc_ApiExplorer {
|
|
1018
|
+
GetProperty<T>(this: Microsoft_AspNetCore_Mvc_ApiExplorer.ApiDescription): Rewrap<this, T | undefined>;
|
|
1019
|
+
SetProperty<T>(this: Microsoft_AspNetCore_Mvc_ApiExplorer.ApiDescription, value: T): Rewrap<this, void>;
|
|
1020
|
+
}
|
|
1949
1021
|
|
|
1022
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Mvc.ApiExplorer
|
|
1950
1023
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Mvc_ApiExplorer {
|
|
1951
1024
|
__tsonic_shape: unknown;
|
|
1952
|
-
__tsonic_type:
|
|
1025
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Mvc_ApiExplorer;
|
|
1953
1026
|
}
|
|
1954
1027
|
|
|
1955
1028
|
export type ExtensionMethods_Microsoft_AspNetCore_Mvc_ApiExplorer<TShape> =
|
|
1956
1029
|
TShape extends null | undefined ? TShape
|
|
1957
1030
|
: TShape extends void ? void
|
|
1958
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.ApiExplorer", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_ApiExplorer> &
|
|
1031
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.ApiExplorer", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_ApiExplorer> & __TsonicExtMethods_Microsoft_AspNetCore_Mvc_ApiExplorer;
|
|
1959
1032
|
|
|
1960
|
-
//
|
|
1961
|
-
|
|
1962
|
-
(
|
|
1963
|
-
|
|
1964
|
-
);
|
|
1033
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Mvc.Formatters.Xml
|
|
1034
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Mvc_Formatters_Xml {
|
|
1035
|
+
GetWrapperProvider(this: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Mvc_Formatters_Xml.IWrapperProviderFactory>, wrapperProviderContext: Microsoft_AspNetCore_Mvc_Formatters_Xml.WrapperProviderContext): Rewrap<this, Microsoft_AspNetCore_Mvc_Formatters_Xml.IWrapperProvider | undefined>;
|
|
1036
|
+
}
|
|
1965
1037
|
|
|
1038
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Mvc.Formatters.Xml
|
|
1966
1039
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Mvc_Formatters_Xml {
|
|
1967
1040
|
__tsonic_shape: unknown;
|
|
1968
|
-
__tsonic_type:
|
|
1041
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Mvc_Formatters_Xml;
|
|
1969
1042
|
}
|
|
1970
1043
|
|
|
1971
1044
|
export type ExtensionMethods_Microsoft_AspNetCore_Mvc_Formatters_Xml<TShape> =
|
|
1972
1045
|
TShape extends null | undefined ? TShape
|
|
1973
1046
|
: TShape extends void ? void
|
|
1974
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.Formatters.Xml", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_Formatters_Xml> &
|
|
1047
|
+
: TShape extends (infer T)[] ? (TShape & System_Collections_Generic.IEnumerable_1<T> & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.Formatters.Xml", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_Formatters_Xml> & __TsonicExtMethods_Microsoft_AspNetCore_Mvc_Formatters_Xml)
|
|
1048
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.Formatters.Xml", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_Formatters_Xml> & __TsonicExtMethods_Microsoft_AspNetCore_Mvc_Formatters_Xml;
|
|
1975
1049
|
|
|
1976
|
-
//
|
|
1977
|
-
|
|
1978
|
-
(
|
|
1979
|
-
|
|
1980
|
-
)
|
|
1050
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Mvc.Localization
|
|
1051
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Mvc_Localization {
|
|
1052
|
+
GetAllStrings(this: Microsoft_AspNetCore_Mvc_Localization.IHtmlLocalizer): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_Localization.LocalizedString>>;
|
|
1053
|
+
GetHtml(this: Microsoft_AspNetCore_Mvc_Localization.IHtmlLocalizer, name: string): Rewrap<this, Microsoft_AspNetCore_Mvc_Localization.LocalizedHtmlString>;
|
|
1054
|
+
GetHtml(this: Microsoft_AspNetCore_Mvc_Localization.IHtmlLocalizer, name: string, ...arguments: unknown[]): Rewrap<this, Microsoft_AspNetCore_Mvc_Localization.LocalizedHtmlString>;
|
|
1055
|
+
}
|
|
1981
1056
|
|
|
1057
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Mvc.Localization
|
|
1982
1058
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Mvc_Localization {
|
|
1983
1059
|
__tsonic_shape: unknown;
|
|
1984
|
-
__tsonic_type:
|
|
1060
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Mvc_Localization;
|
|
1985
1061
|
}
|
|
1986
1062
|
|
|
1987
1063
|
export type ExtensionMethods_Microsoft_AspNetCore_Mvc_Localization<TShape> =
|
|
1988
1064
|
TShape extends null | undefined ? TShape
|
|
1989
1065
|
: TShape extends void ? void
|
|
1990
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.Localization", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_Localization> &
|
|
1066
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.Localization", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_Localization> & __TsonicExtMethods_Microsoft_AspNetCore_Mvc_Localization;
|
|
1067
|
+
|
|
1068
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Mvc.ModelBinding
|
|
1069
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Mvc_ModelBinding {
|
|
1070
|
+
AddModelError<TModel>(this: Microsoft_AspNetCore_Mvc_ModelBinding.ModelStateDictionary, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, unknown>>, errorMessage: string): Rewrap<this, void>;
|
|
1071
|
+
AddModelError<TModel>(this: Microsoft_AspNetCore_Mvc_ModelBinding.ModelStateDictionary, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, unknown>>, exception: System.Exception, metadata: Microsoft_AspNetCore_Mvc_ModelBinding.ModelMetadata): Rewrap<this, void>;
|
|
1072
|
+
GetMetadataForProperty(this: Microsoft_AspNetCore_Mvc_ModelBinding.IModelMetadataProvider, containerType: System.Type, propertyName: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ModelBinding.ModelMetadata>;
|
|
1073
|
+
Remove<TModel>(this: Microsoft_AspNetCore_Mvc_ModelBinding.ModelStateDictionary, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, unknown>>): Rewrap<this, boolean>;
|
|
1074
|
+
RemoveAll<TModel>(this: Microsoft_AspNetCore_Mvc_ModelBinding.ModelStateDictionary, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, unknown>>): Rewrap<this, void>;
|
|
1075
|
+
RemoveType<TModelBinderProvider>(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ModelBinding.IModelBinderProvider>): Rewrap<this, void>;
|
|
1076
|
+
RemoveType(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ModelBinding.IModelBinderProvider>, type: System.Type): Rewrap<this, void>;
|
|
1077
|
+
RemoveType<TValueProviderFactory>(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ModelBinding.IValueProviderFactory>): Rewrap<this, void>;
|
|
1078
|
+
RemoveType(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ModelBinding.IValueProviderFactory>, type: System.Type): Rewrap<this, void>;
|
|
1079
|
+
TryAddModelException<TModel>(this: Microsoft_AspNetCore_Mvc_ModelBinding.ModelStateDictionary, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, unknown>>, exception: System.Exception): Rewrap<this, void>;
|
|
1080
|
+
}
|
|
1991
1081
|
|
|
1992
1082
|
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Mvc.ModelBinding
|
|
1993
|
-
type __TsonicExtSurface_Microsoft_AspNetCore_Mvc_ModelBinding<TShape> =
|
|
1994
|
-
(
|
|
1995
|
-
(TShape extends Microsoft_AspNetCore_Mvc_ModelBinding.IModelMetadataProvider ? __Ext_Microsoft_AspNetCore_Mvc_ModelBinding_IModelMetadataProvider : {}) & (TShape extends Microsoft_AspNetCore_Mvc_ModelBinding.ModelStateDictionary ? __Ext_Microsoft_AspNetCore_Mvc_ModelBinding_ModelStateDictionary : {}) & (TShape extends System_Collections_Generic.IList_1<infer T0> ? __Ext_Microsoft_AspNetCore_Mvc_ModelBinding_IList_1<T0> : {})
|
|
1996
|
-
);
|
|
1997
|
-
|
|
1998
1083
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Mvc_ModelBinding {
|
|
1999
1084
|
__tsonic_shape: unknown;
|
|
2000
|
-
__tsonic_type:
|
|
1085
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Mvc_ModelBinding;
|
|
2001
1086
|
}
|
|
2002
1087
|
|
|
2003
1088
|
export type ExtensionMethods_Microsoft_AspNetCore_Mvc_ModelBinding<TShape> =
|
|
2004
1089
|
TShape extends null | undefined ? TShape
|
|
2005
1090
|
: TShape extends void ? void
|
|
2006
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.ModelBinding", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_ModelBinding> &
|
|
1091
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.ModelBinding", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_ModelBinding> & __TsonicExtMethods_Microsoft_AspNetCore_Mvc_ModelBinding;
|
|
2007
1092
|
|
|
2008
|
-
//
|
|
2009
|
-
|
|
2010
|
-
(
|
|
2011
|
-
|
|
2012
|
-
|
|
1093
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Mvc.ModelBinding.Metadata
|
|
1094
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Mvc_ModelBinding_Metadata {
|
|
1095
|
+
RemoveType<TMetadataDetailsProvider>(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ModelBinding_Metadata.IMetadataDetailsProvider>): Rewrap<this, void>;
|
|
1096
|
+
RemoveType(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ModelBinding_Metadata.IMetadataDetailsProvider>, type: System.Type): Rewrap<this, void>;
|
|
1097
|
+
}
|
|
2013
1098
|
|
|
1099
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Mvc.ModelBinding.Metadata
|
|
2014
1100
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Mvc_ModelBinding_Metadata {
|
|
2015
1101
|
__tsonic_shape: unknown;
|
|
2016
|
-
__tsonic_type:
|
|
1102
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Mvc_ModelBinding_Metadata;
|
|
2017
1103
|
}
|
|
2018
1104
|
|
|
2019
1105
|
export type ExtensionMethods_Microsoft_AspNetCore_Mvc_ModelBinding_Metadata<TShape> =
|
|
2020
1106
|
TShape extends null | undefined ? TShape
|
|
2021
1107
|
: TShape extends void ? void
|
|
2022
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.ModelBinding.Metadata", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_ModelBinding_Metadata> &
|
|
1108
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.ModelBinding.Metadata", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_ModelBinding_Metadata> & __TsonicExtMethods_Microsoft_AspNetCore_Mvc_ModelBinding_Metadata;
|
|
2023
1109
|
|
|
2024
|
-
//
|
|
2025
|
-
|
|
2026
|
-
(
|
|
2027
|
-
|
|
2028
|
-
|
|
1110
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Mvc.ModelBinding.Validation
|
|
1111
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Mvc_ModelBinding_Validation {
|
|
1112
|
+
RemoveType<TModelValidatorProvider>(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ModelBinding_Validation.IModelValidatorProvider>): Rewrap<this, void>;
|
|
1113
|
+
RemoveType(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ModelBinding_Validation.IModelValidatorProvider>, type: System.Type): Rewrap<this, void>;
|
|
1114
|
+
}
|
|
2029
1115
|
|
|
1116
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Mvc.ModelBinding.Validation
|
|
2030
1117
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Mvc_ModelBinding_Validation {
|
|
2031
1118
|
__tsonic_shape: unknown;
|
|
2032
|
-
__tsonic_type:
|
|
1119
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Mvc_ModelBinding_Validation;
|
|
2033
1120
|
}
|
|
2034
1121
|
|
|
2035
1122
|
export type ExtensionMethods_Microsoft_AspNetCore_Mvc_ModelBinding_Validation<TShape> =
|
|
2036
1123
|
TShape extends null | undefined ? TShape
|
|
2037
1124
|
: TShape extends void ? void
|
|
2038
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.ModelBinding.Validation", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_ModelBinding_Validation> &
|
|
1125
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.ModelBinding.Validation", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_ModelBinding_Validation> & __TsonicExtMethods_Microsoft_AspNetCore_Mvc_ModelBinding_Validation;
|
|
1126
|
+
|
|
1127
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Mvc.Rendering
|
|
1128
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Mvc_Rendering {
|
|
1129
|
+
ActionLink(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, linkText: string, actionName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1130
|
+
ActionLink(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, linkText: string, actionName: string, routeValues: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1131
|
+
ActionLink(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, linkText: string, actionName: string, routeValues: unknown, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1132
|
+
ActionLink(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, linkText: string, actionName: string, controllerName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1133
|
+
ActionLink(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, linkText: string, actionName: string, controllerName: string, routeValues: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1134
|
+
ActionLink(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, linkText: string, actionName: string, controllerName: string, routeValues: unknown, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1135
|
+
BeginForm(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
1136
|
+
BeginForm(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, antiforgery: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
1137
|
+
BeginForm(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, method: Microsoft_AspNetCore_Mvc_Rendering.FormMethod): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
1138
|
+
BeginForm(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, method: Microsoft_AspNetCore_Mvc_Rendering.FormMethod, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
1139
|
+
BeginForm(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, method: Microsoft_AspNetCore_Mvc_Rendering.FormMethod, antiforgery: System.Nullable_1<System_Internal.Boolean>, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
1140
|
+
BeginForm(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, routeValues: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
1141
|
+
BeginForm(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, actionName: string, controllerName: string): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
1142
|
+
BeginForm(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, actionName: string, controllerName: string, routeValues: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
1143
|
+
BeginForm(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, actionName: string, controllerName: string, method: Microsoft_AspNetCore_Mvc_Rendering.FormMethod): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
1144
|
+
BeginForm(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, actionName: string, controllerName: string, routeValues: unknown, method: Microsoft_AspNetCore_Mvc_Rendering.FormMethod): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
1145
|
+
BeginForm(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, actionName: string, controllerName: string, method: Microsoft_AspNetCore_Mvc_Rendering.FormMethod, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
1146
|
+
BeginRouteForm(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, routeValues: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
1147
|
+
BeginRouteForm(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, routeValues: unknown, antiforgery: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
1148
|
+
BeginRouteForm(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, routeName: string): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
1149
|
+
BeginRouteForm(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, routeName: string, antiforgery: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
1150
|
+
BeginRouteForm(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, routeName: string, routeValues: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
1151
|
+
BeginRouteForm(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, routeName: string, method: Microsoft_AspNetCore_Mvc_Rendering.FormMethod): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
1152
|
+
BeginRouteForm(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, routeName: string, routeValues: unknown, method: Microsoft_AspNetCore_Mvc_Rendering.FormMethod): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
1153
|
+
BeginRouteForm(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, routeName: string, method: Microsoft_AspNetCore_Mvc_Rendering.FormMethod, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.MvcForm>;
|
|
1154
|
+
CheckBox(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1155
|
+
CheckBox(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, isChecked: boolean): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1156
|
+
CheckBox(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1157
|
+
CheckBoxFor<TModel>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, System_Internal.Boolean>>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1158
|
+
Display(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1159
|
+
Display(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1160
|
+
Display(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, templateName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1161
|
+
Display(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, templateName: string, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1162
|
+
Display(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, templateName: string, htmlFieldName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1163
|
+
DisplayFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1164
|
+
DisplayFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1165
|
+
DisplayFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, templateName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1166
|
+
DisplayFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, templateName: string, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1167
|
+
DisplayFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, templateName: string, htmlFieldName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1168
|
+
DisplayForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1169
|
+
DisplayForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1170
|
+
DisplayForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, templateName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1171
|
+
DisplayForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, templateName: string, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1172
|
+
DisplayForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, templateName: string, htmlFieldName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1173
|
+
DisplayForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, templateName: string, htmlFieldName: string, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1174
|
+
DisplayNameFor<TModelItem, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<System_Collections_Generic.IEnumerable_1<TModelItem>>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModelItem, TResult>>): Rewrap<this, string>;
|
|
1175
|
+
DisplayNameForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper): Rewrap<this, string>;
|
|
1176
|
+
DropDownList(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1177
|
+
DropDownList(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, optionLabel: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1178
|
+
DropDownList(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, selectList: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Mvc_Rendering.SelectListItem>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1179
|
+
DropDownList(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, selectList: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Mvc_Rendering.SelectListItem>, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1180
|
+
DropDownList(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, selectList: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Mvc_Rendering.SelectListItem>, optionLabel: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1181
|
+
DropDownListFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, selectList: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Mvc_Rendering.SelectListItem>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1182
|
+
DropDownListFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, selectList: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Mvc_Rendering.SelectListItem>, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1183
|
+
DropDownListFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, selectList: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Mvc_Rendering.SelectListItem>, optionLabel: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1184
|
+
Editor(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1185
|
+
Editor(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1186
|
+
Editor(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, templateName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1187
|
+
Editor(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, templateName: string, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1188
|
+
Editor(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, templateName: string, htmlFieldName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1189
|
+
EditorFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1190
|
+
EditorFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1191
|
+
EditorFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, templateName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1192
|
+
EditorFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, templateName: string, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1193
|
+
EditorFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, templateName: string, htmlFieldName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1194
|
+
EditorForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1195
|
+
EditorForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1196
|
+
EditorForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, templateName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1197
|
+
EditorForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, templateName: string, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1198
|
+
EditorForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, templateName: string, htmlFieldName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1199
|
+
EditorForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, templateName: string, htmlFieldName: string, additionalViewData: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1200
|
+
Hidden(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1201
|
+
Hidden(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, value: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1202
|
+
HiddenFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1203
|
+
IdForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper): Rewrap<this, string>;
|
|
1204
|
+
InvokeAsync(this: Microsoft_AspNetCore_Mvc.IViewComponentHelper, name: string): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Html.IHtmlContent>>;
|
|
1205
|
+
InvokeAsync(this: Microsoft_AspNetCore_Mvc.IViewComponentHelper, componentType: System.Type): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Html.IHtmlContent>>;
|
|
1206
|
+
InvokeAsync<TComponent>(this: Microsoft_AspNetCore_Mvc.IViewComponentHelper, arguments: unknown): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Html.IHtmlContent>>;
|
|
1207
|
+
InvokeAsync<TComponent>(this: Microsoft_AspNetCore_Mvc.IViewComponentHelper): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Html.IHtmlContent>>;
|
|
1208
|
+
Label(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1209
|
+
Label(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, labelText: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1210
|
+
LabelFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1211
|
+
LabelFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, labelText: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1212
|
+
LabelFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1213
|
+
LabelForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1214
|
+
LabelForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, labelText: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1215
|
+
LabelForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1216
|
+
LabelForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, labelText: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1217
|
+
ListBox(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1218
|
+
ListBox(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, selectList: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Mvc_Rendering.SelectListItem>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1219
|
+
ListBoxFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, selectList: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Mvc_Rendering.SelectListItem>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1220
|
+
NameForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper): Rewrap<this, string>;
|
|
1221
|
+
Partial(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, partialViewName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1222
|
+
Partial(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, partialViewName: string, viewData: Microsoft_AspNetCore_Mvc_ViewFeatures.ViewDataDictionary): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1223
|
+
Partial(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, partialViewName: string, model: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1224
|
+
Partial(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, partialViewName: string, model: unknown, viewData: Microsoft_AspNetCore_Mvc_ViewFeatures.ViewDataDictionary): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1225
|
+
PartialAsync(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, partialViewName: string): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Html.IHtmlContent>>;
|
|
1226
|
+
PartialAsync(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, partialViewName: string, viewData: Microsoft_AspNetCore_Mvc_ViewFeatures.ViewDataDictionary): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Html.IHtmlContent>>;
|
|
1227
|
+
PartialAsync(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, partialViewName: string, model: unknown): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Html.IHtmlContent>>;
|
|
1228
|
+
Password(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1229
|
+
Password(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, value: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1230
|
+
PasswordFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1231
|
+
RadioButton(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, value: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1232
|
+
RadioButton(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, value: unknown, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1233
|
+
RadioButton(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, value: unknown, isChecked: boolean): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1234
|
+
RadioButtonFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, value: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1235
|
+
RenderComponentAsync<TComponent>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, renderMode: Microsoft_AspNetCore_Mvc_Rendering.RenderMode): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Html.IHtmlContent>>;
|
|
1236
|
+
RenderComponentAsync<TComponent>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, renderMode: Microsoft_AspNetCore_Mvc_Rendering.RenderMode, parameters: unknown): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Html.IHtmlContent>>;
|
|
1237
|
+
RenderComponentAsync(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, componentType: System.Type, renderMode: Microsoft_AspNetCore_Mvc_Rendering.RenderMode, parameters: unknown): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_AspNetCore_Html.IHtmlContent>>;
|
|
1238
|
+
RenderPartial(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, partialViewName: string): Rewrap<this, void>;
|
|
1239
|
+
RenderPartial(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, partialViewName: string, viewData: Microsoft_AspNetCore_Mvc_ViewFeatures.ViewDataDictionary): Rewrap<this, void>;
|
|
1240
|
+
RenderPartial(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, partialViewName: string, model: unknown): Rewrap<this, void>;
|
|
1241
|
+
RenderPartial(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, partialViewName: string, model: unknown, viewData: Microsoft_AspNetCore_Mvc_ViewFeatures.ViewDataDictionary): Rewrap<this, void>;
|
|
1242
|
+
RenderPartialAsync(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, partialViewName: string): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1243
|
+
RenderPartialAsync(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, partialViewName: string, viewData: Microsoft_AspNetCore_Mvc_ViewFeatures.ViewDataDictionary): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1244
|
+
RenderPartialAsync(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, partialViewName: string, model: unknown): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1245
|
+
RouteLink(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, linkText: string, routeValues: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1246
|
+
RouteLink(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, linkText: string, routeName: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1247
|
+
RouteLink(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, linkText: string, routeName: string, routeValues: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1248
|
+
RouteLink(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, linkText: string, routeValues: unknown, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1249
|
+
RouteLink(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, linkText: string, routeName: string, routeValues: unknown, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1250
|
+
TextArea(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1251
|
+
TextArea(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1252
|
+
TextArea(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, value: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1253
|
+
TextArea(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, value: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1254
|
+
TextAreaFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1255
|
+
TextAreaFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1256
|
+
TextBox(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1257
|
+
TextBox(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, value: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1258
|
+
TextBox(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, value: unknown, format: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1259
|
+
TextBox(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, value: unknown, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1260
|
+
TextBoxFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1261
|
+
TextBoxFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, format: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1262
|
+
TextBoxFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1263
|
+
ValidationMessage(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1264
|
+
ValidationMessage(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, message: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1265
|
+
ValidationMessage(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1266
|
+
ValidationMessage(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, message: string, tag: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1267
|
+
ValidationMessage(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, message: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1268
|
+
ValidationMessageFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1269
|
+
ValidationMessageFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, message: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1270
|
+
ValidationMessageFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, message: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1271
|
+
ValidationMessageFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>, message: string, tag: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1272
|
+
ValidationSummary(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1273
|
+
ValidationSummary(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, excludePropertyErrors: boolean): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1274
|
+
ValidationSummary(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, message: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1275
|
+
ValidationSummary(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, message: string, tag: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1276
|
+
ValidationSummary(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, excludePropertyErrors: boolean, message: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1277
|
+
ValidationSummary(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, message: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1278
|
+
ValidationSummary(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, message: string, htmlAttributes: unknown, tag: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1279
|
+
ValidationSummary(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, excludePropertyErrors: boolean, message: string, tag: string): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1280
|
+
ValidationSummary(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, excludePropertyErrors: boolean, message: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1281
|
+
Value(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string): Rewrap<this, string>;
|
|
1282
|
+
ValueFor<TModel, TResult>(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<TModel>, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, TResult>>): Rewrap<this, string>;
|
|
1283
|
+
ValueForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper): Rewrap<this, string>;
|
|
1284
|
+
ValueForModel(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, format: string): Rewrap<this, string>;
|
|
1285
|
+
}
|
|
2039
1286
|
|
|
2040
1287
|
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Mvc.Rendering
|
|
2041
|
-
type __TsonicExtSurface_Microsoft_AspNetCore_Mvc_Rendering<TShape> =
|
|
2042
|
-
(
|
|
2043
|
-
(TShape extends Microsoft_AspNetCore_Mvc.IViewComponentHelper ? __Ext_Microsoft_AspNetCore_Mvc_Rendering_IViewComponentHelper : {}) & (TShape extends Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper ? __Ext_Microsoft_AspNetCore_Mvc_Rendering_IHtmlHelper : {}) & (TShape extends Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper_1<infer T0> ? __Ext_Microsoft_AspNetCore_Mvc_Rendering_IHtmlHelper_1<T0> : {})
|
|
2044
|
-
);
|
|
2045
|
-
|
|
2046
1288
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Mvc_Rendering {
|
|
2047
1289
|
__tsonic_shape: unknown;
|
|
2048
|
-
__tsonic_type:
|
|
1290
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Mvc_Rendering;
|
|
2049
1291
|
}
|
|
2050
1292
|
|
|
2051
1293
|
export type ExtensionMethods_Microsoft_AspNetCore_Mvc_Rendering<TShape> =
|
|
2052
1294
|
TShape extends null | undefined ? TShape
|
|
2053
1295
|
: TShape extends void ? void
|
|
2054
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.Rendering", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_Rendering> &
|
|
1296
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.Rendering", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_Rendering> & __TsonicExtMethods_Microsoft_AspNetCore_Mvc_Rendering;
|
|
2055
1297
|
|
|
2056
|
-
//
|
|
2057
|
-
|
|
2058
|
-
(
|
|
2059
|
-
|
|
2060
|
-
)
|
|
1298
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Mvc.TagHelpers
|
|
1299
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Mvc_TagHelpers {
|
|
1300
|
+
AddClass(this: Microsoft_AspNetCore_Razor_TagHelpers.TagHelperOutput, classValue: string, htmlEncoder: System_Text_Encodings_Web.HtmlEncoder): Rewrap<this, void>;
|
|
1301
|
+
CopyHtmlAttribute(this: Microsoft_AspNetCore_Razor_TagHelpers.TagHelperOutput, attributeName: string, context: Microsoft_AspNetCore_Razor_TagHelpers.TagHelperContext): Rewrap<this, void>;
|
|
1302
|
+
MergeAttributes(this: Microsoft_AspNetCore_Razor_TagHelpers.TagHelperOutput, tagBuilder: Microsoft_AspNetCore_Mvc_Rendering.TagBuilder): Rewrap<this, void>;
|
|
1303
|
+
RemoveClass(this: Microsoft_AspNetCore_Razor_TagHelpers.TagHelperOutput, classValue: string, htmlEncoder: System_Text_Encodings_Web.HtmlEncoder): Rewrap<this, void>;
|
|
1304
|
+
RemoveRange(this: Microsoft_AspNetCore_Razor_TagHelpers.TagHelperOutput, attributes: System_Collections_Generic.IEnumerable_1<Microsoft_AspNetCore_Razor_TagHelpers.TagHelperAttribute>): Rewrap<this, void>;
|
|
1305
|
+
}
|
|
2061
1306
|
|
|
1307
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Mvc.TagHelpers
|
|
2062
1308
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Mvc_TagHelpers {
|
|
2063
1309
|
__tsonic_shape: unknown;
|
|
2064
|
-
__tsonic_type:
|
|
1310
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Mvc_TagHelpers;
|
|
2065
1311
|
}
|
|
2066
1312
|
|
|
2067
1313
|
export type ExtensionMethods_Microsoft_AspNetCore_Mvc_TagHelpers<TShape> =
|
|
2068
1314
|
TShape extends null | undefined ? TShape
|
|
2069
1315
|
: TShape extends void ? void
|
|
2070
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.TagHelpers", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_TagHelpers> &
|
|
1316
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.TagHelpers", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_TagHelpers> & __TsonicExtMethods_Microsoft_AspNetCore_Mvc_TagHelpers;
|
|
2071
1317
|
|
|
2072
|
-
//
|
|
2073
|
-
|
|
2074
|
-
(
|
|
2075
|
-
|
|
2076
|
-
)
|
|
1318
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Mvc.ViewFeatures
|
|
1319
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Mvc_ViewFeatures {
|
|
1320
|
+
GenerateForm(this: Microsoft_AspNetCore_Mvc_ViewFeatures.IHtmlGenerator, viewContext: Microsoft_AspNetCore_Mvc_Rendering.ViewContext, actionName: string, controllerName: string, fragment: string, routeValues: unknown, method: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.TagBuilder>;
|
|
1321
|
+
GenerateRouteForm(this: Microsoft_AspNetCore_Mvc_ViewFeatures.IHtmlGenerator, viewContext: Microsoft_AspNetCore_Mvc_Rendering.ViewContext, routeName: string, routeValues: unknown, fragment: string, method: string, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_Rendering.TagBuilder>;
|
|
1322
|
+
GetHtml(this: Microsoft_AspNetCore_Antiforgery.IAntiforgery, httpContext: Microsoft_AspNetCore_Http.HttpContext): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1323
|
+
GetModelExplorerForType(this: Microsoft_AspNetCore_Mvc_ModelBinding.IModelMetadataProvider, modelType: System.Type, model: unknown): Rewrap<this, Microsoft_AspNetCore_Mvc_ViewFeatures.ModelExplorer>;
|
|
1324
|
+
GetSimpleDisplayText(this: Microsoft_AspNetCore_Mvc_ViewFeatures.ModelExplorer): Rewrap<this, string>;
|
|
1325
|
+
}
|
|
2077
1326
|
|
|
1327
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Mvc.ViewFeatures
|
|
2078
1328
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Mvc_ViewFeatures {
|
|
2079
1329
|
__tsonic_shape: unknown;
|
|
2080
|
-
__tsonic_type:
|
|
1330
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Mvc_ViewFeatures;
|
|
2081
1331
|
}
|
|
2082
1332
|
|
|
2083
1333
|
export type ExtensionMethods_Microsoft_AspNetCore_Mvc_ViewFeatures<TShape> =
|
|
2084
1334
|
TShape extends null | undefined ? TShape
|
|
2085
1335
|
: TShape extends void ? void
|
|
2086
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.ViewFeatures", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_ViewFeatures> &
|
|
1336
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Mvc.ViewFeatures", __TsonicExtApplier_Microsoft_AspNetCore_Mvc_ViewFeatures> & __TsonicExtMethods_Microsoft_AspNetCore_Mvc_ViewFeatures;
|
|
2087
1337
|
|
|
2088
|
-
//
|
|
2089
|
-
|
|
2090
|
-
(
|
|
2091
|
-
|
|
2092
|
-
)
|
|
1338
|
+
// Extension method table for namespace: Microsoft.AspNetCore.RateLimiting
|
|
1339
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_RateLimiting {
|
|
1340
|
+
AddConcurrencyLimiter(this: Microsoft_AspNetCore_RateLimiting.RateLimiterOptions, policyName: string, configureOptions: System.Action_1<System_Threading_RateLimiting.ConcurrencyLimiterOptions>): Rewrap<this, Microsoft_AspNetCore_RateLimiting.RateLimiterOptions>;
|
|
1341
|
+
AddFixedWindowLimiter(this: Microsoft_AspNetCore_RateLimiting.RateLimiterOptions, policyName: string, configureOptions: System.Action_1<System_Threading_RateLimiting.FixedWindowRateLimiterOptions>): Rewrap<this, Microsoft_AspNetCore_RateLimiting.RateLimiterOptions>;
|
|
1342
|
+
AddSlidingWindowLimiter(this: Microsoft_AspNetCore_RateLimiting.RateLimiterOptions, policyName: string, configureOptions: System.Action_1<System_Threading_RateLimiting.SlidingWindowRateLimiterOptions>): Rewrap<this, Microsoft_AspNetCore_RateLimiting.RateLimiterOptions>;
|
|
1343
|
+
AddTokenBucketLimiter(this: Microsoft_AspNetCore_RateLimiting.RateLimiterOptions, policyName: string, configureOptions: System.Action_1<System_Threading_RateLimiting.TokenBucketRateLimiterOptions>): Rewrap<this, Microsoft_AspNetCore_RateLimiting.RateLimiterOptions>;
|
|
1344
|
+
}
|
|
2093
1345
|
|
|
1346
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.RateLimiting
|
|
2094
1347
|
interface __TsonicExtApplier_Microsoft_AspNetCore_RateLimiting {
|
|
2095
1348
|
__tsonic_shape: unknown;
|
|
2096
|
-
__tsonic_type:
|
|
1349
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_RateLimiting;
|
|
2097
1350
|
}
|
|
2098
1351
|
|
|
2099
1352
|
export type ExtensionMethods_Microsoft_AspNetCore_RateLimiting<TShape> =
|
|
2100
1353
|
TShape extends null | undefined ? TShape
|
|
2101
1354
|
: TShape extends void ? void
|
|
2102
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.RateLimiting", __TsonicExtApplier_Microsoft_AspNetCore_RateLimiting> &
|
|
1355
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.RateLimiting", __TsonicExtApplier_Microsoft_AspNetCore_RateLimiting> & __TsonicExtMethods_Microsoft_AspNetCore_RateLimiting;
|
|
2103
1356
|
|
|
2104
|
-
//
|
|
2105
|
-
|
|
2106
|
-
(
|
|
2107
|
-
|
|
2108
|
-
);
|
|
1357
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Razor.Hosting
|
|
1358
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Razor_Hosting {
|
|
1359
|
+
GetChecksumMetadata(this: Microsoft_AspNetCore_Razor_Hosting.RazorCompiledItem): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Microsoft_AspNetCore_Razor_Hosting.IRazorSourceChecksumMetadata>>;
|
|
1360
|
+
}
|
|
2109
1361
|
|
|
1362
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Razor.Hosting
|
|
2110
1363
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Razor_Hosting {
|
|
2111
1364
|
__tsonic_shape: unknown;
|
|
2112
|
-
__tsonic_type:
|
|
1365
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Razor_Hosting;
|
|
2113
1366
|
}
|
|
2114
1367
|
|
|
2115
1368
|
export type ExtensionMethods_Microsoft_AspNetCore_Razor_Hosting<TShape> =
|
|
2116
1369
|
TShape extends null | undefined ? TShape
|
|
2117
1370
|
: TShape extends void ? void
|
|
2118
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Razor.Hosting", __TsonicExtApplier_Microsoft_AspNetCore_Razor_Hosting> &
|
|
1371
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Razor.Hosting", __TsonicExtApplier_Microsoft_AspNetCore_Razor_Hosting> & __TsonicExtMethods_Microsoft_AspNetCore_Razor_Hosting;
|
|
1372
|
+
|
|
1373
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Rewrite
|
|
1374
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Rewrite {
|
|
1375
|
+
Add(this: Microsoft_AspNetCore_Rewrite.RewriteOptions, rule: Microsoft_AspNetCore_Rewrite.IRule): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1376
|
+
Add(this: Microsoft_AspNetCore_Rewrite.RewriteOptions, applyRule: System.Action_1<Microsoft_AspNetCore_Rewrite.RewriteContext>): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1377
|
+
AddApacheModRewrite(this: Microsoft_AspNetCore_Rewrite.RewriteOptions, fileProvider: Microsoft_Extensions_FileProviders.IFileProvider, filePath: string): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1378
|
+
AddApacheModRewrite(this: Microsoft_AspNetCore_Rewrite.RewriteOptions, reader: System_IO.TextReader): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1379
|
+
AddIISUrlRewrite(this: Microsoft_AspNetCore_Rewrite.RewriteOptions, fileProvider: Microsoft_Extensions_FileProviders.IFileProvider, filePath: string, alwaysUseManagedServerVariables?: boolean): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1380
|
+
AddIISUrlRewrite(this: Microsoft_AspNetCore_Rewrite.RewriteOptions, reader: System_IO.TextReader, alwaysUseManagedServerVariables?: boolean): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1381
|
+
AddRedirect(this: Microsoft_AspNetCore_Rewrite.RewriteOptions, regex: string, replacement: string): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1382
|
+
AddRedirect(this: Microsoft_AspNetCore_Rewrite.RewriteOptions, regex: string, replacement: string, statusCode: int): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1383
|
+
AddRedirectToHttps(this: Microsoft_AspNetCore_Rewrite.RewriteOptions): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1384
|
+
AddRedirectToHttps(this: Microsoft_AspNetCore_Rewrite.RewriteOptions, statusCode: int): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1385
|
+
AddRedirectToHttps(this: Microsoft_AspNetCore_Rewrite.RewriteOptions, statusCode: int, sslPort: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1386
|
+
AddRedirectToHttpsPermanent(this: Microsoft_AspNetCore_Rewrite.RewriteOptions): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1387
|
+
AddRedirectToNonWww(this: Microsoft_AspNetCore_Rewrite.RewriteOptions): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1388
|
+
AddRedirectToNonWww(this: Microsoft_AspNetCore_Rewrite.RewriteOptions, ...domains: string[]): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1389
|
+
AddRedirectToNonWww(this: Microsoft_AspNetCore_Rewrite.RewriteOptions, statusCode: int): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1390
|
+
AddRedirectToNonWww(this: Microsoft_AspNetCore_Rewrite.RewriteOptions, statusCode: int, ...domains: string[]): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1391
|
+
AddRedirectToNonWwwPermanent(this: Microsoft_AspNetCore_Rewrite.RewriteOptions): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1392
|
+
AddRedirectToNonWwwPermanent(this: Microsoft_AspNetCore_Rewrite.RewriteOptions, ...domains: string[]): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1393
|
+
AddRedirectToWww(this: Microsoft_AspNetCore_Rewrite.RewriteOptions): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1394
|
+
AddRedirectToWww(this: Microsoft_AspNetCore_Rewrite.RewriteOptions, ...domains: string[]): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1395
|
+
AddRedirectToWww(this: Microsoft_AspNetCore_Rewrite.RewriteOptions, statusCode: int): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1396
|
+
AddRedirectToWww(this: Microsoft_AspNetCore_Rewrite.RewriteOptions, statusCode: int, ...domains: string[]): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1397
|
+
AddRedirectToWwwPermanent(this: Microsoft_AspNetCore_Rewrite.RewriteOptions): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1398
|
+
AddRedirectToWwwPermanent(this: Microsoft_AspNetCore_Rewrite.RewriteOptions, ...domains: string[]): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1399
|
+
AddRewrite(this: Microsoft_AspNetCore_Rewrite.RewriteOptions, regex: string, replacement: string, skipRemainingRules: boolean): Rewrap<this, Microsoft_AspNetCore_Rewrite.RewriteOptions>;
|
|
1400
|
+
}
|
|
2119
1401
|
|
|
2120
1402
|
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Rewrite
|
|
2121
|
-
type __TsonicExtSurface_Microsoft_AspNetCore_Rewrite<TShape> =
|
|
2122
|
-
(
|
|
2123
|
-
(TShape extends Microsoft_AspNetCore_Rewrite.RewriteOptions ? __Ext_Microsoft_AspNetCore_Rewrite_RewriteOptions : {})
|
|
2124
|
-
);
|
|
2125
|
-
|
|
2126
1403
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Rewrite {
|
|
2127
1404
|
__tsonic_shape: unknown;
|
|
2128
|
-
__tsonic_type:
|
|
1405
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Rewrite;
|
|
2129
1406
|
}
|
|
2130
1407
|
|
|
2131
1408
|
export type ExtensionMethods_Microsoft_AspNetCore_Rewrite<TShape> =
|
|
2132
1409
|
TShape extends null | undefined ? TShape
|
|
2133
1410
|
: TShape extends void ? void
|
|
2134
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Rewrite", __TsonicExtApplier_Microsoft_AspNetCore_Rewrite> &
|
|
1411
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Rewrite", __TsonicExtApplier_Microsoft_AspNetCore_Rewrite> & __TsonicExtMethods_Microsoft_AspNetCore_Rewrite;
|
|
1412
|
+
|
|
1413
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Routing
|
|
1414
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Routing {
|
|
1415
|
+
GetPathByAction(this: Microsoft_AspNetCore_Routing.LinkGenerator, httpContext: Microsoft_AspNetCore_Http.HttpContext, action?: string, controller?: string, values?: unknown, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1416
|
+
GetPathByAction(this: Microsoft_AspNetCore_Routing.LinkGenerator, action: string, controller: string, values?: unknown, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1417
|
+
GetPathByName(this: Microsoft_AspNetCore_Routing.LinkGenerator, httpContext: Microsoft_AspNetCore_Http.HttpContext, endpointName: string, values: unknown, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1418
|
+
GetPathByName(this: Microsoft_AspNetCore_Routing.LinkGenerator, httpContext: Microsoft_AspNetCore_Http.HttpContext, endpointName: string, values?: Microsoft_AspNetCore_Routing.RouteValueDictionary, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1419
|
+
GetPathByName(this: Microsoft_AspNetCore_Routing.LinkGenerator, endpointName: string, values: unknown, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1420
|
+
GetPathByName(this: Microsoft_AspNetCore_Routing.LinkGenerator, endpointName: string, values?: Microsoft_AspNetCore_Routing.RouteValueDictionary, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1421
|
+
GetPathByPage(this: Microsoft_AspNetCore_Routing.LinkGenerator, httpContext: Microsoft_AspNetCore_Http.HttpContext, page?: string, handler?: string, values?: unknown, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1422
|
+
GetPathByPage(this: Microsoft_AspNetCore_Routing.LinkGenerator, page: string, handler?: string, values?: unknown, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1423
|
+
GetPathByRouteValues(this: Microsoft_AspNetCore_Routing.LinkGenerator, httpContext: Microsoft_AspNetCore_Http.HttpContext, routeName: string, values: unknown, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1424
|
+
GetPathByRouteValues(this: Microsoft_AspNetCore_Routing.LinkGenerator, httpContext: Microsoft_AspNetCore_Http.HttpContext, routeName: string, values?: Microsoft_AspNetCore_Routing.RouteValueDictionary, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1425
|
+
GetPathByRouteValues(this: Microsoft_AspNetCore_Routing.LinkGenerator, routeName: string, values: unknown, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1426
|
+
GetPathByRouteValues(this: Microsoft_AspNetCore_Routing.LinkGenerator, routeName: string, values?: Microsoft_AspNetCore_Routing.RouteValueDictionary, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1427
|
+
GetRouteData(this: Microsoft_AspNetCore_Http.HttpContext): Rewrap<this, Microsoft_AspNetCore_Routing.RouteData>;
|
|
1428
|
+
GetRouteValue(this: Microsoft_AspNetCore_Http.HttpContext, key: string): Rewrap<this, unknown | undefined>;
|
|
1429
|
+
GetUriByAction(this: Microsoft_AspNetCore_Routing.LinkGenerator, httpContext: Microsoft_AspNetCore_Http.HttpContext, action?: string, controller?: string, values?: unknown, scheme?: string, host?: System.Nullable_1<Microsoft_AspNetCore_Http.HostString>, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1430
|
+
GetUriByAction(this: Microsoft_AspNetCore_Routing.LinkGenerator, action: string, controller: string, values: unknown, scheme: string, host: Microsoft_AspNetCore_Http.HostString, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1431
|
+
GetUriByName(this: Microsoft_AspNetCore_Routing.LinkGenerator, httpContext: Microsoft_AspNetCore_Http.HttpContext, endpointName: string, values: unknown, scheme?: string, host?: System.Nullable_1<Microsoft_AspNetCore_Http.HostString>, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1432
|
+
GetUriByName(this: Microsoft_AspNetCore_Routing.LinkGenerator, httpContext: Microsoft_AspNetCore_Http.HttpContext, endpointName: string, values?: Microsoft_AspNetCore_Routing.RouteValueDictionary, scheme?: string, host?: System.Nullable_1<Microsoft_AspNetCore_Http.HostString>, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1433
|
+
GetUriByName(this: Microsoft_AspNetCore_Routing.LinkGenerator, endpointName: string, values: unknown, scheme: string, host: Microsoft_AspNetCore_Http.HostString, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1434
|
+
GetUriByName(this: Microsoft_AspNetCore_Routing.LinkGenerator, endpointName: string, values: Microsoft_AspNetCore_Routing.RouteValueDictionary, scheme: string, host: Microsoft_AspNetCore_Http.HostString, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1435
|
+
GetUriByPage(this: Microsoft_AspNetCore_Routing.LinkGenerator, httpContext: Microsoft_AspNetCore_Http.HttpContext, page?: string, handler?: string, values?: unknown, scheme?: string, host?: System.Nullable_1<Microsoft_AspNetCore_Http.HostString>, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1436
|
+
GetUriByPage(this: Microsoft_AspNetCore_Routing.LinkGenerator, page: string, handler: string, values: unknown, scheme: string, host: Microsoft_AspNetCore_Http.HostString, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1437
|
+
GetUriByRouteValues(this: Microsoft_AspNetCore_Routing.LinkGenerator, httpContext: Microsoft_AspNetCore_Http.HttpContext, routeName: string, values: unknown, scheme?: string, host?: System.Nullable_1<Microsoft_AspNetCore_Http.HostString>, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1438
|
+
GetUriByRouteValues(this: Microsoft_AspNetCore_Routing.LinkGenerator, httpContext: Microsoft_AspNetCore_Http.HttpContext, routeName: string, values?: Microsoft_AspNetCore_Routing.RouteValueDictionary, scheme?: string, host?: System.Nullable_1<Microsoft_AspNetCore_Http.HostString>, pathBase?: System.Nullable_1<Microsoft_AspNetCore_Http.PathString>, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1439
|
+
GetUriByRouteValues(this: Microsoft_AspNetCore_Routing.LinkGenerator, routeName: string, values: unknown, scheme: string, host: Microsoft_AspNetCore_Http.HostString, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1440
|
+
GetUriByRouteValues(this: Microsoft_AspNetCore_Routing.LinkGenerator, routeName: string, values: Microsoft_AspNetCore_Routing.RouteValueDictionary, scheme: string, host: Microsoft_AspNetCore_Http.HostString, pathBase?: Microsoft_AspNetCore_Http.PathString, fragment?: Microsoft_AspNetCore_Http.FragmentString, options?: Microsoft_AspNetCore_Routing.LinkOptions): Rewrap<this, string | undefined>;
|
|
1441
|
+
MapDelete(this: Microsoft_AspNetCore_Routing.IRouteBuilder, template: string, handler: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1442
|
+
MapDelete(this: Microsoft_AspNetCore_Routing.IRouteBuilder, template: string, handler: System.Func_4<Microsoft_AspNetCore_Http.HttpRequest, Microsoft_AspNetCore_Http.HttpResponse, Microsoft_AspNetCore_Routing.RouteData, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1443
|
+
MapGet(this: Microsoft_AspNetCore_Routing.IRouteBuilder, template: string, handler: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1444
|
+
MapGet(this: Microsoft_AspNetCore_Routing.IRouteBuilder, template: string, handler: System.Func_4<Microsoft_AspNetCore_Http.HttpRequest, Microsoft_AspNetCore_Http.HttpResponse, Microsoft_AspNetCore_Routing.RouteData, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1445
|
+
MapIdentityApi<TUser>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
1446
|
+
MapMiddlewareDelete(this: Microsoft_AspNetCore_Routing.IRouteBuilder, template: string, action: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1447
|
+
MapMiddlewareGet(this: Microsoft_AspNetCore_Routing.IRouteBuilder, template: string, action: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1448
|
+
MapMiddlewarePost(this: Microsoft_AspNetCore_Routing.IRouteBuilder, template: string, action: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1449
|
+
MapMiddlewarePut(this: Microsoft_AspNetCore_Routing.IRouteBuilder, template: string, action: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1450
|
+
MapMiddlewareRoute(this: Microsoft_AspNetCore_Routing.IRouteBuilder, template: string, action: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1451
|
+
MapMiddlewareVerb(this: Microsoft_AspNetCore_Routing.IRouteBuilder, verb: string, template: string, action: System.Action_1<Microsoft_AspNetCore_Builder.IApplicationBuilder>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1452
|
+
MapPost(this: Microsoft_AspNetCore_Routing.IRouteBuilder, template: string, handler: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1453
|
+
MapPost(this: Microsoft_AspNetCore_Routing.IRouteBuilder, template: string, handler: System.Func_4<Microsoft_AspNetCore_Http.HttpRequest, Microsoft_AspNetCore_Http.HttpResponse, Microsoft_AspNetCore_Routing.RouteData, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1454
|
+
MapPut(this: Microsoft_AspNetCore_Routing.IRouteBuilder, template: string, handler: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1455
|
+
MapPut(this: Microsoft_AspNetCore_Routing.IRouteBuilder, template: string, handler: System.Func_4<Microsoft_AspNetCore_Http.HttpRequest, Microsoft_AspNetCore_Http.HttpResponse, Microsoft_AspNetCore_Routing.RouteData, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1456
|
+
MapRoute(this: Microsoft_AspNetCore_Routing.IRouteBuilder, template: string, handler: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1457
|
+
MapShortCircuit(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, statusCode: int, ...routePrefixes: string[]): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
1458
|
+
MapVerb(this: Microsoft_AspNetCore_Routing.IRouteBuilder, verb: string, template: string, handler: System.Func_4<Microsoft_AspNetCore_Http.HttpRequest, Microsoft_AspNetCore_Http.HttpResponse, Microsoft_AspNetCore_Routing.RouteData, System_Threading_Tasks.Task>): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1459
|
+
MapVerb(this: Microsoft_AspNetCore_Routing.IRouteBuilder, verb: string, template: string, handler: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Routing.IRouteBuilder>;
|
|
1460
|
+
ParsePathByEndpointName(this: Microsoft_AspNetCore_Routing.LinkParser, endpointName: string, path: Microsoft_AspNetCore_Http.PathString): Rewrap<this, Microsoft_AspNetCore_Routing.RouteValueDictionary | undefined>;
|
|
1461
|
+
}
|
|
2135
1462
|
|
|
2136
1463
|
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Routing
|
|
2137
|
-
type __TsonicExtSurface_Microsoft_AspNetCore_Routing<TShape> =
|
|
2138
|
-
(
|
|
2139
|
-
(TShape extends Microsoft_AspNetCore_Http.HttpContext ? __Ext_Microsoft_AspNetCore_Routing_HttpContext : {}) & (TShape extends Microsoft_AspNetCore_Routing.IEndpointRouteBuilder ? __Ext_Microsoft_AspNetCore_Routing_IEndpointRouteBuilder : {}) & (TShape extends Microsoft_AspNetCore_Routing.IRouteBuilder ? __Ext_Microsoft_AspNetCore_Routing_IRouteBuilder : {}) & (TShape extends Microsoft_AspNetCore_Routing.LinkGenerator ? __Ext_Microsoft_AspNetCore_Routing_LinkGenerator : {}) & (TShape extends Microsoft_AspNetCore_Routing.LinkParser ? __Ext_Microsoft_AspNetCore_Routing_LinkParser : {})
|
|
2140
|
-
);
|
|
2141
|
-
|
|
2142
1464
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Routing {
|
|
2143
1465
|
__tsonic_shape: unknown;
|
|
2144
|
-
__tsonic_type:
|
|
1466
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Routing;
|
|
2145
1467
|
}
|
|
2146
1468
|
|
|
2147
1469
|
export type ExtensionMethods_Microsoft_AspNetCore_Routing<TShape> =
|
|
2148
1470
|
TShape extends null | undefined ? TShape
|
|
2149
1471
|
: TShape extends void ? void
|
|
2150
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Routing", __TsonicExtApplier_Microsoft_AspNetCore_Routing> &
|
|
1472
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Routing", __TsonicExtApplier_Microsoft_AspNetCore_Routing> & __TsonicExtMethods_Microsoft_AspNetCore_Routing;
|
|
2151
1473
|
|
|
2152
|
-
//
|
|
2153
|
-
|
|
2154
|
-
(
|
|
2155
|
-
|
|
2156
|
-
);
|
|
1474
|
+
// Extension method table for namespace: Microsoft.AspNetCore.Server.IIS
|
|
1475
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_Server_IIS {
|
|
1476
|
+
GetIISServerVariable(this: Microsoft_AspNetCore_Http.HttpContext, variableName: string): Rewrap<this, string | undefined>;
|
|
1477
|
+
}
|
|
2157
1478
|
|
|
1479
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Server.IIS
|
|
2158
1480
|
interface __TsonicExtApplier_Microsoft_AspNetCore_Server_IIS {
|
|
2159
1481
|
__tsonic_shape: unknown;
|
|
2160
|
-
__tsonic_type:
|
|
1482
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_Server_IIS;
|
|
2161
1483
|
}
|
|
2162
1484
|
|
|
2163
1485
|
export type ExtensionMethods_Microsoft_AspNetCore_Server_IIS<TShape> =
|
|
2164
1486
|
TShape extends null | undefined ? TShape
|
|
2165
1487
|
: TShape extends void ? void
|
|
2166
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Server.IIS", __TsonicExtApplier_Microsoft_AspNetCore_Server_IIS> &
|
|
1488
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.Server.IIS", __TsonicExtApplier_Microsoft_AspNetCore_Server_IIS> & __TsonicExtMethods_Microsoft_AspNetCore_Server_IIS;
|
|
1489
|
+
|
|
1490
|
+
// Extension method table for namespace: Microsoft.AspNetCore.SignalR
|
|
1491
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_SignalR {
|
|
1492
|
+
AddFilter(this: Microsoft_AspNetCore_SignalR.HubOptions, hubFilter: Microsoft_AspNetCore_SignalR.IHubFilter): Rewrap<this, void>;
|
|
1493
|
+
AddFilter<TFilter>(this: Microsoft_AspNetCore_SignalR.HubOptions): Rewrap<this, void>;
|
|
1494
|
+
AddFilter(this: Microsoft_AspNetCore_SignalR.HubOptions, filterType: System.Type): Rewrap<this, void>;
|
|
1495
|
+
AllExcept<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, excludedConnectionId1: string): Rewrap<this, T>;
|
|
1496
|
+
AllExcept<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, excludedConnectionId1: string, excludedConnectionId2: string): Rewrap<this, T>;
|
|
1497
|
+
AllExcept<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string): Rewrap<this, T>;
|
|
1498
|
+
AllExcept<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string, excludedConnectionId4: string): Rewrap<this, T>;
|
|
1499
|
+
AllExcept<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string, excludedConnectionId4: string, excludedConnectionId5: string): Rewrap<this, T>;
|
|
1500
|
+
AllExcept<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string, excludedConnectionId4: string, excludedConnectionId5: string, excludedConnectionId6: string): Rewrap<this, T>;
|
|
1501
|
+
AllExcept<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string, excludedConnectionId4: string, excludedConnectionId5: string, excludedConnectionId6: string, excludedConnectionId7: string): Rewrap<this, T>;
|
|
1502
|
+
AllExcept<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string, excludedConnectionId4: string, excludedConnectionId5: string, excludedConnectionId6: string, excludedConnectionId7: string, excludedConnectionId8: string): Rewrap<this, T>;
|
|
1503
|
+
AllExcept<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, excludedConnectionIds: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, T>;
|
|
1504
|
+
Clients<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, connection1: string): Rewrap<this, T>;
|
|
1505
|
+
Clients<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, connection1: string, connection2: string): Rewrap<this, T>;
|
|
1506
|
+
Clients<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, connection1: string, connection2: string, connection3: string): Rewrap<this, T>;
|
|
1507
|
+
Clients<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, connection1: string, connection2: string, connection3: string, connection4: string): Rewrap<this, T>;
|
|
1508
|
+
Clients<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, connection1: string, connection2: string, connection3: string, connection4: string, connection5: string): Rewrap<this, T>;
|
|
1509
|
+
Clients<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, connection1: string, connection2: string, connection3: string, connection4: string, connection5: string, connection6: string): Rewrap<this, T>;
|
|
1510
|
+
Clients<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, connection1: string, connection2: string, connection3: string, connection4: string, connection5: string, connection6: string, connection7: string): Rewrap<this, T>;
|
|
1511
|
+
Clients<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, connection1: string, connection2: string, connection3: string, connection4: string, connection5: string, connection6: string, connection7: string, connection8: string): Rewrap<this, T>;
|
|
1512
|
+
Clients<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, connectionIds: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, T>;
|
|
1513
|
+
GetHttpContext(this: Microsoft_AspNetCore_SignalR.HubCallerContext): Rewrap<this, Microsoft_AspNetCore_Http.HttpContext | undefined>;
|
|
1514
|
+
GetHttpContext(this: Microsoft_AspNetCore_SignalR.HubConnectionContext): Rewrap<this, Microsoft_AspNetCore_Http.HttpContext | undefined>;
|
|
1515
|
+
GroupExcept<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, groupName: string, excludedConnectionId1: string): Rewrap<this, T>;
|
|
1516
|
+
GroupExcept<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, groupName: string, excludedConnectionId1: string, excludedConnectionId2: string): Rewrap<this, T>;
|
|
1517
|
+
GroupExcept<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, groupName: string, excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string): Rewrap<this, T>;
|
|
1518
|
+
GroupExcept<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, groupName: string, excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string, excludedConnectionId4: string): Rewrap<this, T>;
|
|
1519
|
+
GroupExcept<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, groupName: string, excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string, excludedConnectionId4: string, excludedConnectionId5: string): Rewrap<this, T>;
|
|
1520
|
+
GroupExcept<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, groupName: string, excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string, excludedConnectionId4: string, excludedConnectionId5: string, excludedConnectionId6: string): Rewrap<this, T>;
|
|
1521
|
+
GroupExcept<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, groupName: string, excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string, excludedConnectionId4: string, excludedConnectionId5: string, excludedConnectionId6: string, excludedConnectionId7: string): Rewrap<this, T>;
|
|
1522
|
+
GroupExcept<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, groupName: string, excludedConnectionId1: string, excludedConnectionId2: string, excludedConnectionId3: string, excludedConnectionId4: string, excludedConnectionId5: string, excludedConnectionId6: string, excludedConnectionId7: string, excludedConnectionId8: string): Rewrap<this, T>;
|
|
1523
|
+
GroupExcept<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, groupName: string, excludedConnectionIds: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, T>;
|
|
1524
|
+
Groups<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, group1: string): Rewrap<this, T>;
|
|
1525
|
+
Groups<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, group1: string, group2: string): Rewrap<this, T>;
|
|
1526
|
+
Groups<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, group1: string, group2: string, group3: string): Rewrap<this, T>;
|
|
1527
|
+
Groups<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, group1: string, group2: string, group3: string, group4: string): Rewrap<this, T>;
|
|
1528
|
+
Groups<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, group1: string, group2: string, group3: string, group4: string, group5: string): Rewrap<this, T>;
|
|
1529
|
+
Groups<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, group1: string, group2: string, group3: string, group4: string, group5: string, group6: string): Rewrap<this, T>;
|
|
1530
|
+
Groups<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, group1: string, group2: string, group3: string, group4: string, group5: string, group6: string, group7: string): Rewrap<this, T>;
|
|
1531
|
+
Groups<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, group1: string, group2: string, group3: string, group4: string, group5: string, group6: string, group7: string, group8: string): Rewrap<this, T>;
|
|
1532
|
+
Groups<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, groupNames: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, T>;
|
|
1533
|
+
InvokeAsync<T>(this: Microsoft_AspNetCore_SignalR.ISingleClientProxy, method: string, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1534
|
+
InvokeAsync<T>(this: Microsoft_AspNetCore_SignalR.ISingleClientProxy, method: string, arg1: unknown, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1535
|
+
InvokeAsync<T>(this: Microsoft_AspNetCore_SignalR.ISingleClientProxy, method: string, arg1: unknown, arg2: unknown, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1536
|
+
InvokeAsync<T>(this: Microsoft_AspNetCore_SignalR.ISingleClientProxy, method: string, arg1: unknown, arg2: unknown, arg3: unknown, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1537
|
+
InvokeAsync<T>(this: Microsoft_AspNetCore_SignalR.ISingleClientProxy, method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1538
|
+
InvokeAsync<T>(this: Microsoft_AspNetCore_SignalR.ISingleClientProxy, method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1539
|
+
InvokeAsync<T>(this: Microsoft_AspNetCore_SignalR.ISingleClientProxy, method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, arg6: unknown, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1540
|
+
InvokeAsync<T>(this: Microsoft_AspNetCore_SignalR.ISingleClientProxy, method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, arg6: unknown, arg7: unknown, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1541
|
+
InvokeAsync<T>(this: Microsoft_AspNetCore_SignalR.ISingleClientProxy, method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, arg6: unknown, arg7: unknown, arg8: unknown, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1542
|
+
InvokeAsync<T>(this: Microsoft_AspNetCore_SignalR.ISingleClientProxy, method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, arg6: unknown, arg7: unknown, arg8: unknown, arg9: unknown, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1543
|
+
InvokeAsync<T>(this: Microsoft_AspNetCore_SignalR.ISingleClientProxy, method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, arg6: unknown, arg7: unknown, arg8: unknown, arg9: unknown, arg10: unknown, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
|
|
1544
|
+
SendAsync(this: Microsoft_AspNetCore_SignalR.IClientProxy, method: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1545
|
+
SendAsync(this: Microsoft_AspNetCore_SignalR.IClientProxy, method: string, arg1: unknown, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1546
|
+
SendAsync(this: Microsoft_AspNetCore_SignalR.IClientProxy, method: string, arg1: unknown, arg2: unknown, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1547
|
+
SendAsync(this: Microsoft_AspNetCore_SignalR.IClientProxy, method: string, arg1: unknown, arg2: unknown, arg3: unknown, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1548
|
+
SendAsync(this: Microsoft_AspNetCore_SignalR.IClientProxy, method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1549
|
+
SendAsync(this: Microsoft_AspNetCore_SignalR.IClientProxy, method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1550
|
+
SendAsync(this: Microsoft_AspNetCore_SignalR.IClientProxy, method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, arg6: unknown, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1551
|
+
SendAsync(this: Microsoft_AspNetCore_SignalR.IClientProxy, method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, arg6: unknown, arg7: unknown, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1552
|
+
SendAsync(this: Microsoft_AspNetCore_SignalR.IClientProxy, method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, arg6: unknown, arg7: unknown, arg8: unknown, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1553
|
+
SendAsync(this: Microsoft_AspNetCore_SignalR.IClientProxy, method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, arg6: unknown, arg7: unknown, arg8: unknown, arg9: unknown, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1554
|
+
SendAsync(this: Microsoft_AspNetCore_SignalR.IClientProxy, method: string, arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown, arg6: unknown, arg7: unknown, arg8: unknown, arg9: unknown, arg10: unknown, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1555
|
+
UseHub<THub>(this: Microsoft_AspNetCore_Connections.IConnectionBuilder): Rewrap<this, Microsoft_AspNetCore_Connections.IConnectionBuilder>;
|
|
1556
|
+
Users<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, user1: string): Rewrap<this, T>;
|
|
1557
|
+
Users<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, user1: string, user2: string): Rewrap<this, T>;
|
|
1558
|
+
Users<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, user1: string, user2: string, user3: string): Rewrap<this, T>;
|
|
1559
|
+
Users<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, user1: string, user2: string, user3: string, user4: string): Rewrap<this, T>;
|
|
1560
|
+
Users<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, user1: string, user2: string, user3: string, user4: string, user5: string): Rewrap<this, T>;
|
|
1561
|
+
Users<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, user1: string, user2: string, user3: string, user4: string, user5: string, user6: string): Rewrap<this, T>;
|
|
1562
|
+
Users<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, user1: string, user2: string, user3: string, user4: string, user5: string, user6: string, user7: string): Rewrap<this, T>;
|
|
1563
|
+
Users<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, user1: string, user2: string, user3: string, user4: string, user5: string, user6: string, user7: string, user8: string): Rewrap<this, T>;
|
|
1564
|
+
Users<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, userIds: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, T>;
|
|
1565
|
+
}
|
|
2167
1566
|
|
|
2168
1567
|
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.SignalR
|
|
2169
|
-
type __TsonicExtSurface_Microsoft_AspNetCore_SignalR<TShape> =
|
|
2170
|
-
(
|
|
2171
|
-
(TShape extends Microsoft_AspNetCore_Connections.IConnectionBuilder ? __Ext_Microsoft_AspNetCore_SignalR_IConnectionBuilder : {}) & (TShape extends Microsoft_AspNetCore_SignalR.HubCallerContext ? __Ext_Microsoft_AspNetCore_SignalR_HubCallerContext : {}) & (TShape extends Microsoft_AspNetCore_SignalR.HubConnectionContext ? __Ext_Microsoft_AspNetCore_SignalR_HubConnectionContext : {}) & (TShape extends Microsoft_AspNetCore_SignalR.HubOptions ? __Ext_Microsoft_AspNetCore_SignalR_HubOptions : {}) & (TShape extends Microsoft_AspNetCore_SignalR.IClientProxy ? __Ext_Microsoft_AspNetCore_SignalR_IClientProxy : {}) & (TShape extends Microsoft_AspNetCore_SignalR.IHubClients_1<infer T0> ? __Ext_Microsoft_AspNetCore_SignalR_IHubClients_1<T0> : {}) & (TShape extends Microsoft_AspNetCore_SignalR.ISingleClientProxy ? __Ext_Microsoft_AspNetCore_SignalR_ISingleClientProxy : {})
|
|
2172
|
-
);
|
|
2173
|
-
|
|
2174
1568
|
interface __TsonicExtApplier_Microsoft_AspNetCore_SignalR {
|
|
2175
1569
|
__tsonic_shape: unknown;
|
|
2176
|
-
__tsonic_type:
|
|
1570
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_SignalR;
|
|
2177
1571
|
}
|
|
2178
1572
|
|
|
2179
1573
|
export type ExtensionMethods_Microsoft_AspNetCore_SignalR<TShape> =
|
|
2180
1574
|
TShape extends null | undefined ? TShape
|
|
2181
1575
|
: TShape extends void ? void
|
|
2182
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.SignalR", __TsonicExtApplier_Microsoft_AspNetCore_SignalR> &
|
|
1576
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.SignalR", __TsonicExtApplier_Microsoft_AspNetCore_SignalR> & __TsonicExtMethods_Microsoft_AspNetCore_SignalR;
|
|
2183
1577
|
|
|
2184
|
-
//
|
|
2185
|
-
|
|
2186
|
-
(
|
|
2187
|
-
|
|
2188
|
-
);
|
|
1578
|
+
// Extension method table for namespace: Microsoft.AspNetCore.SignalR.Protocol
|
|
1579
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_SignalR_Protocol {
|
|
1580
|
+
GetMessageBytes(this: Microsoft_AspNetCore_SignalR_Protocol.IHubProtocol, message: Microsoft_AspNetCore_SignalR_Protocol.HubMessage): Rewrap<this, byte[]>;
|
|
1581
|
+
}
|
|
2189
1582
|
|
|
1583
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.SignalR.Protocol
|
|
2190
1584
|
interface __TsonicExtApplier_Microsoft_AspNetCore_SignalR_Protocol {
|
|
2191
1585
|
__tsonic_shape: unknown;
|
|
2192
|
-
__tsonic_type:
|
|
1586
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_SignalR_Protocol;
|
|
2193
1587
|
}
|
|
2194
1588
|
|
|
2195
1589
|
export type ExtensionMethods_Microsoft_AspNetCore_SignalR_Protocol<TShape> =
|
|
2196
1590
|
TShape extends null | undefined ? TShape
|
|
2197
1591
|
: TShape extends void ? void
|
|
2198
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.SignalR.Protocol", __TsonicExtApplier_Microsoft_AspNetCore_SignalR_Protocol> &
|
|
1592
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.SignalR.Protocol", __TsonicExtApplier_Microsoft_AspNetCore_SignalR_Protocol> & __TsonicExtMethods_Microsoft_AspNetCore_SignalR_Protocol;
|
|
2199
1593
|
|
|
2200
|
-
//
|
|
2201
|
-
|
|
2202
|
-
(
|
|
2203
|
-
|
|
2204
|
-
);
|
|
1594
|
+
// Extension method table for namespace: Microsoft.AspNetCore.WebSockets
|
|
1595
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_WebSockets {
|
|
1596
|
+
AddWebSockets(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configure: System.Action_1<Microsoft_AspNetCore_Builder.WebSocketOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1597
|
+
}
|
|
2205
1598
|
|
|
1599
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.WebSockets
|
|
2206
1600
|
interface __TsonicExtApplier_Microsoft_AspNetCore_WebSockets {
|
|
2207
1601
|
__tsonic_shape: unknown;
|
|
2208
|
-
__tsonic_type:
|
|
1602
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_WebSockets;
|
|
2209
1603
|
}
|
|
2210
1604
|
|
|
2211
1605
|
export type ExtensionMethods_Microsoft_AspNetCore_WebSockets<TShape> =
|
|
2212
1606
|
TShape extends null | undefined ? TShape
|
|
2213
1607
|
: TShape extends void ? void
|
|
2214
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.WebSockets", __TsonicExtApplier_Microsoft_AspNetCore_WebSockets> &
|
|
1608
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.WebSockets", __TsonicExtApplier_Microsoft_AspNetCore_WebSockets> & __TsonicExtMethods_Microsoft_AspNetCore_WebSockets;
|
|
2215
1609
|
|
|
2216
|
-
//
|
|
2217
|
-
|
|
2218
|
-
(
|
|
2219
|
-
|
|
2220
|
-
)
|
|
1610
|
+
// Extension method table for namespace: Microsoft.AspNetCore.WebUtilities
|
|
1611
|
+
interface __TsonicExtMethods_Microsoft_AspNetCore_WebUtilities {
|
|
1612
|
+
AsFileSection(this: Microsoft_AspNetCore_WebUtilities.MultipartSection): Rewrap<this, Microsoft_AspNetCore_WebUtilities.FileMultipartSection | undefined>;
|
|
1613
|
+
AsFormDataSection(this: Microsoft_AspNetCore_WebUtilities.MultipartSection): Rewrap<this, Microsoft_AspNetCore_WebUtilities.FormMultipartSection | undefined>;
|
|
1614
|
+
DrainAsync(this: System_IO.Stream, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1615
|
+
DrainAsync(this: System_IO.Stream, limit: System.Nullable_1<System_Internal.Int64>, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1616
|
+
DrainAsync(this: System_IO.Stream, bytePool: System_Buffers.ArrayPool_1<System_Internal.Byte>, limit: System.Nullable_1<System_Internal.Int64>, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
1617
|
+
GetContentDispositionHeader(this: Microsoft_AspNetCore_WebUtilities.MultipartSection): Rewrap<this, Microsoft_Net_Http_Headers.ContentDispositionHeaderValue | undefined>;
|
|
1618
|
+
ReadAsStringAsync(this: Microsoft_AspNetCore_WebUtilities.MultipartSection): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.String>>;
|
|
1619
|
+
ReadAsStringAsync(this: Microsoft_AspNetCore_WebUtilities.MultipartSection, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<System_Internal.String>>;
|
|
1620
|
+
}
|
|
2221
1621
|
|
|
1622
|
+
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.WebUtilities
|
|
2222
1623
|
interface __TsonicExtApplier_Microsoft_AspNetCore_WebUtilities {
|
|
2223
1624
|
__tsonic_shape: unknown;
|
|
2224
|
-
__tsonic_type:
|
|
1625
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_AspNetCore_WebUtilities;
|
|
2225
1626
|
}
|
|
2226
1627
|
|
|
2227
1628
|
export type ExtensionMethods_Microsoft_AspNetCore_WebUtilities<TShape> =
|
|
2228
1629
|
TShape extends null | undefined ? TShape
|
|
2229
1630
|
: TShape extends void ? void
|
|
2230
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.WebUtilities", __TsonicExtApplier_Microsoft_AspNetCore_WebUtilities> &
|
|
1631
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.AspNetCore.WebUtilities", __TsonicExtApplier_Microsoft_AspNetCore_WebUtilities> & __TsonicExtMethods_Microsoft_AspNetCore_WebUtilities;
|
|
1632
|
+
|
|
1633
|
+
// Extension method table for namespace: Microsoft.Extensions.DependencyInjection
|
|
1634
|
+
interface __TsonicExtMethods_Microsoft_Extensions_DependencyInjection {
|
|
1635
|
+
Add(this: Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection, convention: Microsoft_AspNetCore_Mvc_ApplicationModels.IParameterModelBaseConvention): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1636
|
+
Add(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ApplicationModels.IApplicationModelConvention>, controllerModelConvention: Microsoft_AspNetCore_Mvc_ApplicationModels.IControllerModelConvention): Rewrap<this, void>;
|
|
1637
|
+
Add(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ApplicationModels.IApplicationModelConvention>, actionModelConvention: Microsoft_AspNetCore_Mvc_ApplicationModels.IActionModelConvention): Rewrap<this, void>;
|
|
1638
|
+
Add(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ApplicationModels.IApplicationModelConvention>, parameterModelConvention: Microsoft_AspNetCore_Mvc_ApplicationModels.IParameterModelConvention): Rewrap<this, void>;
|
|
1639
|
+
Add(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ApplicationModels.IApplicationModelConvention>, parameterModelConvention: Microsoft_AspNetCore_Mvc_ApplicationModels.IParameterModelBaseConvention): Rewrap<this, void>;
|
|
1640
|
+
AddAntiforgery(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1641
|
+
AddAntiforgery(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, setupAction: System.Action_1<Microsoft_AspNetCore_Antiforgery.AntiforgeryOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1642
|
+
AddApiExplorer(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1643
|
+
AddApplicationPart(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, assembly: System_Reflection.Assembly): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1644
|
+
AddApplicationPart(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, assembly: System_Reflection.Assembly): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1645
|
+
AddAreaPageRoute(this: Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection, areaName: string, pageName: string, route: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1646
|
+
AddAuthentication(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1647
|
+
AddAuthentication(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, defaultScheme: string): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1648
|
+
AddAuthentication(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<Microsoft_AspNetCore_Authentication.AuthenticationOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1649
|
+
AddAuthenticationCore(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1650
|
+
AddAuthenticationCore(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<Microsoft_AspNetCore_Authentication.AuthenticationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1651
|
+
AddAuthorization(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1652
|
+
AddAuthorization(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Authorization.AuthorizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1653
|
+
AddAuthorization(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1654
|
+
AddAuthorization(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configure: System.Action_1<Microsoft_AspNetCore_Authorization.AuthorizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1655
|
+
AddAuthorizationBuilder(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_AspNetCore_Authorization.AuthorizationBuilder>;
|
|
1656
|
+
AddAuthorizationCore(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1657
|
+
AddAuthorizationCore(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configure: System.Action_1<Microsoft_AspNetCore_Authorization.AuthorizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1658
|
+
AddAuthorizationPolicyEvaluator(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1659
|
+
AddBearerToken(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1660
|
+
AddBearerToken(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder, authenticationScheme: string): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1661
|
+
AddBearerToken(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder, configure: System.Action_1<Microsoft_AspNetCore_Authentication_BearerToken.BearerTokenOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1662
|
+
AddBearerToken(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder, authenticationScheme: string, configure: System.Action_1<Microsoft_AspNetCore_Authentication_BearerToken.BearerTokenOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1663
|
+
AddCacheTagHelper(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1664
|
+
AddCacheTagHelperLimits(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, configure: System.Action_1<Microsoft_AspNetCore_Mvc_TagHelpers.CacheTagHelperOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1665
|
+
AddCacheTagHelperLimits(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, configure: System.Action_1<Microsoft_AspNetCore_Mvc_TagHelpers.CacheTagHelperOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1666
|
+
AddCascadingAuthenticationState(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1667
|
+
AddCascadingValue<TValue>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, initialValueFactory: System.Func_2<System.IServiceProvider, TValue>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1668
|
+
AddCascadingValue<TValue>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, name: string, initialValueFactory: System.Func_2<System.IServiceProvider, TValue>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1669
|
+
AddCertificateForwarding(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configure: System.Action_1<Microsoft_AspNetCore_HttpOverrides.CertificateForwardingOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1670
|
+
AddCircuitOptions(this: Microsoft_Extensions_DependencyInjection.IServerSideBlazorBuilder, configure: System.Action_1<Microsoft_AspNetCore_Components_Server.CircuitOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServerSideBlazorBuilder>;
|
|
1671
|
+
AddConnections(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1672
|
+
AddConnections(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, options: System.Action_1<Microsoft_AspNetCore_Http_Connections.ConnectionOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1673
|
+
AddControllers(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1674
|
+
AddControllers(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configure: System.Action_1<Microsoft_AspNetCore_Mvc.MvcOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1675
|
+
AddControllersAsServices(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1676
|
+
AddControllersAsServices(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1677
|
+
AddControllersWithViews(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1678
|
+
AddControllersWithViews(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configure: System.Action_1<Microsoft_AspNetCore_Mvc.MvcOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1679
|
+
AddCookie(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1680
|
+
AddCookie(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder, authenticationScheme: string): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1681
|
+
AddCookie(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder, configureOptions: System.Action_1<Microsoft_AspNetCore_Authentication_Cookies.CookieAuthenticationOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1682
|
+
AddCookie(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder, authenticationScheme: string, configureOptions: System.Action_1<Microsoft_AspNetCore_Authentication_Cookies.CookieAuthenticationOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1683
|
+
AddCookie(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder, authenticationScheme: string, displayName: string, configureOptions: System.Action_1<Microsoft_AspNetCore_Authentication_Cookies.CookieAuthenticationOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1684
|
+
AddCookiePolicy(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<Microsoft_AspNetCore_Builder.CookiePolicyOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1685
|
+
AddCookiePolicy<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_2<Microsoft_AspNetCore_Builder.CookiePolicyOptions, TService>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1686
|
+
AddCookieTempDataProvider(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1687
|
+
AddCookieTempDataProvider(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.CookieTempDataProviderOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1688
|
+
AddCookieTempDataProvider(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1689
|
+
AddCookieTempDataProvider(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.CookieTempDataProviderOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1690
|
+
AddCors(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1691
|
+
AddCors(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Cors_Infrastructure.CorsOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1692
|
+
AddCors(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1693
|
+
AddCors(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, setupAction: System.Action_1<Microsoft_AspNetCore_Cors_Infrastructure.CorsOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1694
|
+
AddDataAnnotations(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1695
|
+
AddDataAnnotationsLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1696
|
+
AddDataAnnotationsLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_DataAnnotations.MvcDataAnnotationsLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1697
|
+
AddDataAnnotationsLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1698
|
+
AddDataAnnotationsLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_DataAnnotations.MvcDataAnnotationsLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1699
|
+
AddDataProtection(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
1700
|
+
AddDataProtection(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, setupAction: System.Action_1<Microsoft_AspNetCore_DataProtection.DataProtectionOptions>): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
1701
|
+
AddDirectoryBrowser(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1702
|
+
AddEndpointsApiExplorer(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1703
|
+
AddExceptionHandler(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<Microsoft_AspNetCore_Builder.ExceptionHandlerOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1704
|
+
AddExceptionHandler<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_2<Microsoft_AspNetCore_Builder.ExceptionHandlerOptions, TService>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1705
|
+
AddExceptionHandler<T>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1706
|
+
AddFormatterMappings(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Formatters.FormatterMappings>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1707
|
+
AddFormatterMappings(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1708
|
+
AddFormatterMappings(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Formatters.FormatterMappings>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1709
|
+
AddHttpContextAccessor(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1710
|
+
AddHttpLogging(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1711
|
+
AddHttpLogging(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<Microsoft_AspNetCore_HttpLogging.HttpLoggingOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1712
|
+
AddHttpLoggingInterceptor<T>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1713
|
+
AddHubOptions<THub>(this: Microsoft_AspNetCore_SignalR.ISignalRServerBuilder, configure: System.Action_1<Microsoft_AspNetCore_SignalR.HubOptions_1<THub>>): Rewrap<this, Microsoft_AspNetCore_SignalR.ISignalRServerBuilder>;
|
|
1714
|
+
AddHubOptions(this: Microsoft_Extensions_DependencyInjection.IServerSideBlazorBuilder, configure: System.Action_1<Microsoft_AspNetCore_SignalR.HubOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServerSideBlazorBuilder>;
|
|
1715
|
+
AddIdentity<TUser, TRole>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityBuilder>;
|
|
1716
|
+
AddIdentity<TUser, TRole>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, setupAction: System.Action_1<Microsoft_AspNetCore_Identity.IdentityOptions>): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityBuilder>;
|
|
1717
|
+
AddIdentityApiEndpoints<TUser>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityBuilder>;
|
|
1718
|
+
AddIdentityApiEndpoints<TUser>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configure: System.Action_1<Microsoft_AspNetCore_Identity.IdentityOptions>): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityBuilder>;
|
|
1719
|
+
AddIdentityCore<TUser>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityBuilder>;
|
|
1720
|
+
AddIdentityCore<TUser>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, setupAction: System.Action_1<Microsoft_AspNetCore_Identity.IdentityOptions>): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityBuilder>;
|
|
1721
|
+
AddInteractiveServerComponents(this: Microsoft_Extensions_DependencyInjection.IRazorComponentsBuilder, configure?: System.Action_1<Microsoft_AspNetCore_Components_Server.CircuitOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServerSideBlazorBuilder>;
|
|
1722
|
+
AddJsonOptions(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, configure: System.Action_1<Microsoft_AspNetCore_Mvc.JsonOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1723
|
+
AddJsonOptions(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, configure: System.Action_1<Microsoft_AspNetCore_Mvc.JsonOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1724
|
+
AddMvc(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1725
|
+
AddMvc(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.MvcOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1726
|
+
AddMvcCore(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1727
|
+
AddMvcCore(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.MvcOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1728
|
+
AddMvcLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1729
|
+
AddMvcLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, localizationOptionsSetupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1730
|
+
AddMvcLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1731
|
+
AddMvcLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, localizationOptionsSetupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>, format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1732
|
+
AddMvcLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, dataAnnotationsLocalizationOptionsSetupAction: System.Action_1<Microsoft_AspNetCore_Mvc_DataAnnotations.MvcDataAnnotationsLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1733
|
+
AddMvcLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, localizationOptionsSetupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>, dataAnnotationsLocalizationOptionsSetupAction: System.Action_1<Microsoft_AspNetCore_Mvc_DataAnnotations.MvcDataAnnotationsLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1734
|
+
AddMvcLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat, dataAnnotationsLocalizationOptionsSetupAction: System.Action_1<Microsoft_AspNetCore_Mvc_DataAnnotations.MvcDataAnnotationsLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1735
|
+
AddMvcLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, localizationOptionsSetupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>, format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat, dataAnnotationsLocalizationOptionsSetupAction: System.Action_1<Microsoft_AspNetCore_Mvc_DataAnnotations.MvcDataAnnotationsLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1736
|
+
AddMvcLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1737
|
+
AddMvcLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, localizationOptionsSetupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1738
|
+
AddMvcLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1739
|
+
AddMvcLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, localizationOptionsSetupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>, format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1740
|
+
AddMvcLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, dataAnnotationsLocalizationOptionsSetupAction: System.Action_1<Microsoft_AspNetCore_Mvc_DataAnnotations.MvcDataAnnotationsLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1741
|
+
AddMvcLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, localizationOptionsSetupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>, dataAnnotationsLocalizationOptionsSetupAction: System.Action_1<Microsoft_AspNetCore_Mvc_DataAnnotations.MvcDataAnnotationsLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1742
|
+
AddMvcLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat, dataAnnotationsLocalizationOptionsSetupAction: System.Action_1<Microsoft_AspNetCore_Mvc_DataAnnotations.MvcDataAnnotationsLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1743
|
+
AddMvcLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, localizationOptionsSetupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>, format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat, dataAnnotationsLocalizationOptionsSetupAction: System.Action_1<Microsoft_AspNetCore_Mvc_DataAnnotations.MvcDataAnnotationsLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1744
|
+
AddMvcOptions(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.MvcOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1745
|
+
AddMvcOptions(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.MvcOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1746
|
+
AddOAuth(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder, authenticationScheme: string, configureOptions: System.Action_1<Microsoft_AspNetCore_Authentication_OAuth.OAuthOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1747
|
+
AddOAuth(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder, authenticationScheme: string, displayName: string, configureOptions: System.Action_1<Microsoft_AspNetCore_Authentication_OAuth.OAuthOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1748
|
+
AddOAuth<TOptions, THandler>(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder, authenticationScheme: string, configureOptions: System.Action_1<TOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1749
|
+
AddOAuth<TOptions, THandler>(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder, authenticationScheme: string, displayName: string, configureOptions: System.Action_1<TOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1750
|
+
AddOutputCache(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1751
|
+
AddOutputCache(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<Microsoft_AspNetCore_OutputCaching.OutputCacheOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1752
|
+
AddPageRoute(this: Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection, pageName: string, route: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1753
|
+
AddProblemDetails(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1754
|
+
AddProblemDetails(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configure: System.Action_1<Microsoft_AspNetCore_Http.ProblemDetailsOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1755
|
+
AddRazorComponents(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configure?: System.Action_1<Microsoft_AspNetCore_Components_Endpoints.RazorComponentsServiceOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IRazorComponentsBuilder>;
|
|
1756
|
+
AddRazorOptions(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Razor.RazorViewEngineOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1757
|
+
AddRazorPages(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1758
|
+
AddRazorPages(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_RazorPages.RazorPagesOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1759
|
+
AddRazorPages(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1760
|
+
AddRazorPages(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configure: System.Action_1<Microsoft_AspNetCore_Mvc_RazorPages.RazorPagesOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1761
|
+
AddRazorPagesOptions(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_RazorPages.RazorPagesOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1762
|
+
AddRazorViewEngine(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1763
|
+
AddRazorViewEngine(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Razor.RazorViewEngineOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1764
|
+
AddRequestDecompression(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1765
|
+
AddRequestDecompression(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<Microsoft_AspNetCore_RequestDecompression.RequestDecompressionOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1766
|
+
AddRequestLocalization(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<Microsoft_AspNetCore_Builder.RequestLocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1767
|
+
AddRequestLocalization<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_2<Microsoft_AspNetCore_Builder.RequestLocalizationOptions, TService>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1768
|
+
AddRequestTimeouts(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1769
|
+
AddRequestTimeouts(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configure: System.Action_1<Microsoft_AspNetCore_Http_Timeouts.RequestTimeoutOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1770
|
+
AddResponseCaching(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1771
|
+
AddResponseCaching(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<Microsoft_AspNetCore_ResponseCaching.ResponseCachingOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1772
|
+
AddRouting(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1773
|
+
AddRouting(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<Microsoft_AspNetCore_Routing.RouteOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1774
|
+
AddRoutingCore(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1775
|
+
AddServerSideBlazor(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configure?: System.Action_1<Microsoft_AspNetCore_Components_Server.CircuitOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServerSideBlazorBuilder>;
|
|
1776
|
+
AddSession(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1777
|
+
AddSession(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configure: System.Action_1<Microsoft_AspNetCore_Builder.SessionOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1778
|
+
AddSessionStateTempDataProvider(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1779
|
+
AddSignalR(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_AspNetCore_SignalR.ISignalRServerBuilder>;
|
|
1780
|
+
AddSignalR(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configure: System.Action_1<Microsoft_AspNetCore_SignalR.HubOptions>): Rewrap<this, Microsoft_AspNetCore_SignalR.ISignalRServerBuilder>;
|
|
1781
|
+
AddSignalRCore(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_AspNetCore_SignalR.ISignalRServerBuilder>;
|
|
1782
|
+
AddTagHelpersAsServices(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1783
|
+
AddTagHelpersAsServices(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1784
|
+
AddViewComponentsAsServices(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1785
|
+
AddViewLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1786
|
+
AddViewLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1787
|
+
AddViewLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, setupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1788
|
+
AddViewLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat, setupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1789
|
+
AddViewLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1790
|
+
AddViewLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1791
|
+
AddViewLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, setupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1792
|
+
AddViewLocalization(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, format: Microsoft_AspNetCore_Mvc_Razor.LanguageViewLocationExpanderFormat, setupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1793
|
+
AddViewOptions(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.MvcViewOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1794
|
+
AddViews(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1795
|
+
AddViews(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.MvcViewOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1796
|
+
AddW3CLogging(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<Microsoft_AspNetCore_HttpLogging.W3CLoggerOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1797
|
+
AddXmlDataContractSerializerFormatters(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1798
|
+
AddXmlDataContractSerializerFormatters(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Formatters_Xml.MvcXmlOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1799
|
+
AddXmlDataContractSerializerFormatters(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1800
|
+
AddXmlDataContractSerializerFormatters(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Formatters_Xml.MvcXmlOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1801
|
+
AddXmlOptions(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Formatters_Xml.MvcXmlOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1802
|
+
AddXmlOptions(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Formatters_Xml.MvcXmlOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1803
|
+
AddXmlSerializerFormatters(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1804
|
+
AddXmlSerializerFormatters(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Formatters_Xml.MvcXmlOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1805
|
+
AddXmlSerializerFormatters(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1806
|
+
AddXmlSerializerFormatters(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Formatters_Xml.MvcXmlOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1807
|
+
AllowAnonymousToAreaFolder(this: Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection, areaName: string, folderPath: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1808
|
+
AllowAnonymousToAreaPage(this: Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection, areaName: string, pageName: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1809
|
+
AllowAnonymousToFolder(this: Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection, folderPath: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1810
|
+
AllowAnonymousToPage(this: Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection, pageName: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1811
|
+
AuthorizeAreaFolder(this: Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection, areaName: string, folderPath: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1812
|
+
AuthorizeAreaFolder(this: Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection, areaName: string, folderPath: string, policy: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1813
|
+
AuthorizeAreaPage(this: Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection, areaName: string, pageName: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1814
|
+
AuthorizeAreaPage(this: Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection, areaName: string, pageName: string, policy: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1815
|
+
AuthorizeFolder(this: Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection, folderPath: string, policy: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1816
|
+
AuthorizeFolder(this: Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection, folderPath: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1817
|
+
AuthorizePage(this: Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection, pageName: string, policy: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1818
|
+
AuthorizePage(this: Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection, pageName: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1819
|
+
ConfigureApiBehaviorOptions(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.ApiBehaviorOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1820
|
+
ConfigureApiBehaviorOptions(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.ApiBehaviorOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1821
|
+
ConfigureApplicationCookie(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configure: System.Action_1<Microsoft_AspNetCore_Authentication_Cookies.CookieAuthenticationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1822
|
+
ConfigureApplicationPartManager(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_ApplicationParts.ApplicationPartManager>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1823
|
+
ConfigureApplicationPartManager(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_ApplicationParts.ApplicationPartManager>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1824
|
+
ConfigureCors(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Cors_Infrastructure.CorsOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1825
|
+
ConfigureExternalCookie(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configure: System.Action_1<Microsoft_AspNetCore_Authentication_Cookies.CookieAuthenticationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1826
|
+
ConfigureFilter(this: Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection, factory: System.Func_2<Microsoft_AspNetCore_Mvc_ApplicationModels.PageApplicationModel, Microsoft_AspNetCore_Mvc_Filters.IFilterMetadata>): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.IPageApplicationModelConvention>;
|
|
1827
|
+
ConfigureFilter(this: Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection, filter: Microsoft_AspNetCore_Mvc_Filters.IFilterMetadata): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1828
|
+
ConfigureHttpJsonOptions(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<Microsoft_AspNetCore_Http_Json.JsonOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1829
|
+
ConfigureViews(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.MvcViewOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1830
|
+
InitializeTagHelper<TTagHelper>(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, initialize: System.Action_2<TTagHelper, Microsoft_AspNetCore_Mvc_Rendering.ViewContext>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1831
|
+
InitializeTagHelper<TTagHelper>(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, initialize: System.Action_2<TTagHelper, Microsoft_AspNetCore_Mvc_Rendering.ViewContext>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1832
|
+
RegisterPersistentService<TPersistentService>(this: Microsoft_Extensions_DependencyInjection.IRazorComponentsBuilder, renderMode: Microsoft_AspNetCore_Components.IComponentRenderMode): Rewrap<this, Microsoft_Extensions_DependencyInjection.IRazorComponentsBuilder>;
|
|
1833
|
+
RemoveType<TApplicationModelConvention>(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ApplicationModels.IApplicationModelConvention>): Rewrap<this, void>;
|
|
1834
|
+
RemoveType(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ApplicationModels.IApplicationModelConvention>, type: System.Type): Rewrap<this, void>;
|
|
1835
|
+
SetCompatibilityVersion(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, version: Microsoft_AspNetCore_Mvc.CompatibilityVersion): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1836
|
+
SetCompatibilityVersion(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, version: Microsoft_AspNetCore_Mvc.CompatibilityVersion): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1837
|
+
TryAddCascadingValue<TValue>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, valueFactory: System.Func_2<System.IServiceProvider, TValue>): Rewrap<this, void>;
|
|
1838
|
+
TryAddCascadingValue<TValue>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, name: string, valueFactory: System.Func_2<System.IServiceProvider, TValue>): Rewrap<this, void>;
|
|
1839
|
+
WithRazorPagesAtContentRoot(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1840
|
+
WithRazorPagesRoot(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, rootDirectory: string): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1841
|
+
WithRazorPagesRoot(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, rootDirectory: string): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1842
|
+
}
|
|
2231
1843
|
|
|
2232
1844
|
// Generic helper type for extension methods in namespace: Microsoft.Extensions.DependencyInjection
|
|
2233
|
-
type __TsonicExtSurface_Microsoft_Extensions_DependencyInjection<TShape> =
|
|
2234
|
-
(
|
|
2235
|
-
(TShape extends Microsoft_AspNetCore_Authentication.AuthenticationBuilder ? __Ext_Microsoft_Extensions_DependencyInjection_AuthenticationBuilder : {}) & (TShape extends Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection ? __Ext_Microsoft_Extensions_DependencyInjection_PageConventionCollection : {}) & (TShape extends Microsoft_AspNetCore_SignalR.ISignalRServerBuilder ? __Ext_Microsoft_Extensions_DependencyInjection_ISignalRServerBuilder : {}) & (TShape extends Microsoft_Extensions_DependencyInjection.IMvcBuilder ? __Ext_Microsoft_Extensions_DependencyInjection_IMvcBuilder : {}) & (TShape extends Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder ? __Ext_Microsoft_Extensions_DependencyInjection_IMvcCoreBuilder : {}) & (TShape extends Microsoft_Extensions_DependencyInjection.IRazorComponentsBuilder ? __Ext_Microsoft_Extensions_DependencyInjection_IRazorComponentsBuilder : {}) & (TShape extends Microsoft_Extensions_DependencyInjection.IServerSideBlazorBuilder ? __Ext_Microsoft_Extensions_DependencyInjection_IServerSideBlazorBuilder : {}) & (TShape extends Microsoft_Extensions_DependencyInjection.IServiceCollection ? __Ext_Microsoft_Extensions_DependencyInjection_IServiceCollection : {}) & (TShape extends System_Collections_Generic.IList_1<infer T0> ? __Ext_Microsoft_Extensions_DependencyInjection_IList_1<T0> : {})
|
|
2236
|
-
);
|
|
2237
|
-
|
|
2238
1845
|
interface __TsonicExtApplier_Microsoft_Extensions_DependencyInjection {
|
|
2239
1846
|
__tsonic_shape: unknown;
|
|
2240
|
-
__tsonic_type:
|
|
1847
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_Extensions_DependencyInjection;
|
|
2241
1848
|
}
|
|
2242
1849
|
|
|
2243
1850
|
export type ExtensionMethods_Microsoft_Extensions_DependencyInjection<TShape> =
|
|
2244
1851
|
TShape extends null | undefined ? TShape
|
|
2245
1852
|
: TShape extends void ? void
|
|
2246
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.DependencyInjection", __TsonicExtApplier_Microsoft_Extensions_DependencyInjection> &
|
|
1853
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.DependencyInjection", __TsonicExtApplier_Microsoft_Extensions_DependencyInjection> & __TsonicExtMethods_Microsoft_Extensions_DependencyInjection;
|
|
2247
1854
|
|
|
2248
|
-
//
|
|
2249
|
-
|
|
2250
|
-
(
|
|
2251
|
-
|
|
2252
|
-
)
|
|
1855
|
+
// Extension method table for namespace: Microsoft.Extensions.Hosting
|
|
1856
|
+
interface __TsonicExtMethods_Microsoft_Extensions_Hosting {
|
|
1857
|
+
ConfigureSlimWebHost(this: Microsoft_Extensions_Hosting.IHostBuilder, configure: System.Action_1<Microsoft_AspNetCore_Hosting.IWebHostBuilder>, configureWebHostBuilder: System.Action_1<Microsoft_Extensions_Hosting.WebHostBuilderOptions>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
1858
|
+
ConfigureWebHost(this: Microsoft_Extensions_Hosting.IHostBuilder, configure: System.Action_1<Microsoft_AspNetCore_Hosting.IWebHostBuilder>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
1859
|
+
ConfigureWebHost(this: Microsoft_Extensions_Hosting.IHostBuilder, configure: System.Action_1<Microsoft_AspNetCore_Hosting.IWebHostBuilder>, configureWebHostBuilder: System.Action_1<Microsoft_Extensions_Hosting.WebHostBuilderOptions>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
1860
|
+
ConfigureWebHostDefaults(this: Microsoft_Extensions_Hosting.IHostBuilder, configure: System.Action_1<Microsoft_AspNetCore_Hosting.IWebHostBuilder>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
1861
|
+
ConfigureWebHostDefaults(this: Microsoft_Extensions_Hosting.IHostBuilder, configure: System.Action_1<Microsoft_AspNetCore_Hosting.IWebHostBuilder>, configureOptions: System.Action_1<Microsoft_Extensions_Hosting.WebHostBuilderOptions>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
1862
|
+
}
|
|
2253
1863
|
|
|
1864
|
+
// Generic helper type for extension methods in namespace: Microsoft.Extensions.Hosting
|
|
2254
1865
|
interface __TsonicExtApplier_Microsoft_Extensions_Hosting {
|
|
2255
1866
|
__tsonic_shape: unknown;
|
|
2256
|
-
__tsonic_type:
|
|
1867
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_Extensions_Hosting;
|
|
2257
1868
|
}
|
|
2258
1869
|
|
|
2259
1870
|
export type ExtensionMethods_Microsoft_Extensions_Hosting<TShape> =
|
|
2260
1871
|
TShape extends null | undefined ? TShape
|
|
2261
1872
|
: TShape extends void ? void
|
|
2262
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Hosting", __TsonicExtApplier_Microsoft_Extensions_Hosting> &
|
|
1873
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Hosting", __TsonicExtApplier_Microsoft_Extensions_Hosting> & __TsonicExtMethods_Microsoft_Extensions_Hosting;
|
|
1874
|
+
|
|
1875
|
+
// Extension method table for namespace: Microsoft.JSInterop
|
|
1876
|
+
interface __TsonicExtMethods_Microsoft_JSInterop {
|
|
1877
|
+
GetValueAsync<TValue>(this: Microsoft_JSInterop.IJSObjectReference, identifier: string, timeout: System.TimeSpan): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
1878
|
+
GetValueAsync<TValue>(this: Microsoft_JSInterop.IJSRuntime, identifier: string, timeout: System.TimeSpan): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
1879
|
+
InvokeAsync<TValue>(this: Microsoft_JSInterop.IJSObjectReference, identifier: string, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
1880
|
+
InvokeAsync<TValue>(this: Microsoft_JSInterop.IJSObjectReference, identifier: string, cancellationToken: System_Threading.CancellationToken, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
1881
|
+
InvokeAsync<TValue>(this: Microsoft_JSInterop.IJSObjectReference, identifier: string, timeout: System.TimeSpan, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
1882
|
+
InvokeAsync<TValue>(this: Microsoft_JSInterop.IJSRuntime, identifier: string, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
1883
|
+
InvokeAsync<TValue>(this: Microsoft_JSInterop.IJSRuntime, identifier: string, cancellationToken: System_Threading.CancellationToken, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
1884
|
+
InvokeAsync<TValue>(this: Microsoft_JSInterop.IJSRuntime, identifier: string, timeout: System.TimeSpan, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<TValue>>;
|
|
1885
|
+
InvokeConstructorAsync(this: Microsoft_JSInterop.IJSObjectReference, identifier: string, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_JSInterop.IJSObjectReference>>;
|
|
1886
|
+
InvokeConstructorAsync(this: Microsoft_JSInterop.IJSObjectReference, identifier: string, cancellationToken: System_Threading.CancellationToken, args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_JSInterop.IJSObjectReference>>;
|
|
1887
|
+
InvokeConstructorAsync(this: Microsoft_JSInterop.IJSObjectReference, identifier: string, timeout: System.TimeSpan, args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_JSInterop.IJSObjectReference>>;
|
|
1888
|
+
InvokeConstructorAsync(this: Microsoft_JSInterop.IJSRuntime, identifier: string, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_JSInterop.IJSObjectReference>>;
|
|
1889
|
+
InvokeConstructorAsync(this: Microsoft_JSInterop.IJSRuntime, identifier: string, cancellationToken: System_Threading.CancellationToken, args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_JSInterop.IJSObjectReference>>;
|
|
1890
|
+
InvokeConstructorAsync(this: Microsoft_JSInterop.IJSRuntime, identifier: string, timeout: System.TimeSpan, args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_JSInterop.IJSObjectReference>>;
|
|
1891
|
+
InvokeVoid(this: Microsoft_JSInterop.IJSInProcessObjectReference, identifier: string, ...args: unknown[]): Rewrap<this, void>;
|
|
1892
|
+
InvokeVoid(this: Microsoft_JSInterop.IJSInProcessRuntime, identifier: string, ...args: unknown[]): Rewrap<this, void>;
|
|
1893
|
+
InvokeVoidAsync(this: Microsoft_JSInterop.IJSObjectReference, identifier: string, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask>;
|
|
1894
|
+
InvokeVoidAsync(this: Microsoft_JSInterop.IJSObjectReference, identifier: string, cancellationToken: System_Threading.CancellationToken, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask>;
|
|
1895
|
+
InvokeVoidAsync(this: Microsoft_JSInterop.IJSObjectReference, identifier: string, timeout: System.TimeSpan, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask>;
|
|
1896
|
+
InvokeVoidAsync(this: Microsoft_JSInterop.IJSRuntime, identifier: string, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask>;
|
|
1897
|
+
InvokeVoidAsync(this: Microsoft_JSInterop.IJSRuntime, identifier: string, cancellationToken: System_Threading.CancellationToken, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask>;
|
|
1898
|
+
InvokeVoidAsync(this: Microsoft_JSInterop.IJSRuntime, identifier: string, timeout: System.TimeSpan, ...args: unknown[]): Rewrap<this, System_Threading_Tasks.ValueTask>;
|
|
1899
|
+
SetValueAsync<TValue>(this: Microsoft_JSInterop.IJSObjectReference, identifier: string, value: TValue, timeout: System.TimeSpan): Rewrap<this, System_Threading_Tasks.ValueTask>;
|
|
1900
|
+
SetValueAsync<TValue>(this: Microsoft_JSInterop.IJSRuntime, identifier: string, value: TValue, timeout: System.TimeSpan): Rewrap<this, System_Threading_Tasks.ValueTask>;
|
|
1901
|
+
}
|
|
2263
1902
|
|
|
2264
1903
|
// Generic helper type for extension methods in namespace: Microsoft.JSInterop
|
|
2265
|
-
type __TsonicExtSurface_Microsoft_JSInterop<TShape> =
|
|
2266
|
-
(
|
|
2267
|
-
(TShape extends Microsoft_JSInterop.IJSInProcessObjectReference ? __Ext_Microsoft_JSInterop_IJSInProcessObjectReference : {}) & (TShape extends Microsoft_JSInterop.IJSInProcessRuntime ? __Ext_Microsoft_JSInterop_IJSInProcessRuntime : {}) & (TShape extends Microsoft_JSInterop.IJSObjectReference ? __Ext_Microsoft_JSInterop_IJSObjectReference : {}) & (TShape extends Microsoft_JSInterop.IJSRuntime ? __Ext_Microsoft_JSInterop_IJSRuntime : {})
|
|
2268
|
-
);
|
|
2269
|
-
|
|
2270
1904
|
interface __TsonicExtApplier_Microsoft_JSInterop {
|
|
2271
1905
|
__tsonic_shape: unknown;
|
|
2272
|
-
__tsonic_type:
|
|
1906
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_JSInterop;
|
|
2273
1907
|
}
|
|
2274
1908
|
|
|
2275
1909
|
export type ExtensionMethods_Microsoft_JSInterop<TShape> =
|
|
2276
1910
|
TShape extends null | undefined ? TShape
|
|
2277
1911
|
: TShape extends void ? void
|
|
2278
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.JSInterop", __TsonicExtApplier_Microsoft_JSInterop> &
|
|
1912
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.JSInterop", __TsonicExtApplier_Microsoft_JSInterop> & __TsonicExtMethods_Microsoft_JSInterop;
|
|
2279
1913
|
|
|
2280
|
-
//
|
|
2281
|
-
|
|
2282
|
-
(
|
|
2283
|
-
|
|
2284
|
-
|
|
1914
|
+
// Extension method table for namespace: Microsoft.Net.Http.Headers
|
|
1915
|
+
interface __TsonicExtMethods_Microsoft_Net_Http_Headers {
|
|
1916
|
+
IsFileDisposition(this: Microsoft_Net_Http_Headers.ContentDispositionHeaderValue): Rewrap<this, boolean>;
|
|
1917
|
+
IsFormDisposition(this: Microsoft_Net_Http_Headers.ContentDispositionHeaderValue): Rewrap<this, boolean>;
|
|
1918
|
+
}
|
|
2285
1919
|
|
|
1920
|
+
// Generic helper type for extension methods in namespace: Microsoft.Net.Http.Headers
|
|
2286
1921
|
interface __TsonicExtApplier_Microsoft_Net_Http_Headers {
|
|
2287
1922
|
__tsonic_shape: unknown;
|
|
2288
|
-
__tsonic_type:
|
|
1923
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_Net_Http_Headers;
|
|
2289
1924
|
}
|
|
2290
1925
|
|
|
2291
1926
|
export type ExtensionMethods_Microsoft_Net_Http_Headers<TShape> =
|
|
2292
1927
|
TShape extends null | undefined ? TShape
|
|
2293
1928
|
: TShape extends void ? void
|
|
2294
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.Net.Http.Headers", __TsonicExtApplier_Microsoft_Net_Http_Headers> &
|
|
1929
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.Net.Http.Headers", __TsonicExtApplier_Microsoft_Net_Http_Headers> & __TsonicExtMethods_Microsoft_Net_Http_Headers;
|
|
2295
1930
|
|
|
2296
|
-
//
|
|
2297
|
-
|
|
2298
|
-
(
|
|
2299
|
-
|
|
2300
|
-
);
|
|
1931
|
+
// Extension method table for namespace: System.Security.Claims
|
|
1932
|
+
interface __TsonicExtMethods_System_Security_Claims {
|
|
1933
|
+
FindFirstValue(this: System_Security_Claims.ClaimsPrincipal, claimType: string): Rewrap<this, string | undefined>;
|
|
1934
|
+
}
|
|
2301
1935
|
|
|
1936
|
+
// Generic helper type for extension methods in namespace: System.Security.Claims
|
|
2302
1937
|
interface __TsonicExtApplier_System_Security_Claims {
|
|
2303
1938
|
__tsonic_shape: unknown;
|
|
2304
|
-
__tsonic_type:
|
|
1939
|
+
__tsonic_type: __TsonicExtMethods_System_Security_Claims;
|
|
2305
1940
|
}
|
|
2306
1941
|
|
|
2307
1942
|
export type ExtensionMethods_System_Security_Claims<TShape> =
|
|
2308
1943
|
TShape extends null | undefined ? TShape
|
|
2309
1944
|
: TShape extends void ? void
|
|
2310
|
-
: TShape & __TsonicWithExt<TShape, "System.Security.Claims", __TsonicExtApplier_System_Security_Claims> &
|
|
1945
|
+
: TShape & __TsonicWithExt<TShape, "System.Security.Claims", __TsonicExtApplier_System_Security_Claims> & __TsonicExtMethods_System_Security_Claims;
|
|
2311
1946
|
|