@tsonic/aspnetcore 10.0.35 → 10.0.37
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 +32 -32
- package/package.json +1 -1
|
@@ -230,8 +230,8 @@ interface __TsonicExtMethods_Microsoft_AspNetCore_Builder {
|
|
|
230
230
|
MapBlazorHub(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, path: string): Rewrap<this, Microsoft_AspNetCore_Builder.ComponentEndpointConventionBuilder>;
|
|
231
231
|
MapBlazorHub(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, configureOptions: System.Action_1<Microsoft_AspNetCore_Http_Connections.HttpConnectionDispatcherOptions>): Rewrap<this, Microsoft_AspNetCore_Builder.ComponentEndpointConventionBuilder>;
|
|
232
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>;
|
|
233
|
+
MapConnectionHandler<TConnectionHandler extends Microsoft_AspNetCore_Connections.ConnectionHandler>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string): Rewrap<this, Microsoft_AspNetCore_Builder.ConnectionEndpointRouteBuilder>;
|
|
234
|
+
MapConnectionHandler<TConnectionHandler extends Microsoft_AspNetCore_Connections.ConnectionHandler>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, configureOptions: System.Action_1<Microsoft_AspNetCore_Http_Connections.HttpConnectionDispatcherOptions>): Rewrap<this, Microsoft_AspNetCore_Builder.ConnectionEndpointRouteBuilder>;
|
|
235
235
|
MapConnections(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, configure: System.Action_1<Microsoft_AspNetCore_Connections.IConnectionBuilder>): Rewrap<this, Microsoft_AspNetCore_Builder.ConnectionEndpointRouteBuilder>;
|
|
236
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
237
|
MapControllerRoute(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, name: string, pattern: string, defaults?: unknown, constraints?: unknown, dataTokens?: unknown): Rewrap<this, Microsoft_AspNetCore_Builder.ControllerActionEndpointConventionBuilder>;
|
|
@@ -239,12 +239,12 @@ interface __TsonicExtMethods_Microsoft_AspNetCore_Builder {
|
|
|
239
239
|
MapDefaultControllerRoute(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.ControllerActionEndpointConventionBuilder>;
|
|
240
240
|
MapDelete(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
241
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>;
|
|
242
|
+
MapDynamicControllerRoute<TTransformer extends Microsoft_AspNetCore_Mvc_Routing.DynamicRouteValueTransformer>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string): Rewrap<this, void>;
|
|
243
|
+
MapDynamicControllerRoute<TTransformer extends Microsoft_AspNetCore_Mvc_Routing.DynamicRouteValueTransformer>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, state: unknown): Rewrap<this, void>;
|
|
244
|
+
MapDynamicControllerRoute<TTransformer extends Microsoft_AspNetCore_Mvc_Routing.DynamicRouteValueTransformer>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, state: unknown, order: int): Rewrap<this, void>;
|
|
245
|
+
MapDynamicPageRoute<TTransformer extends Microsoft_AspNetCore_Mvc_Routing.DynamicRouteValueTransformer>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string): Rewrap<this, void>;
|
|
246
|
+
MapDynamicPageRoute<TTransformer extends Microsoft_AspNetCore_Mvc_Routing.DynamicRouteValueTransformer>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, state: unknown): Rewrap<this, void>;
|
|
247
|
+
MapDynamicPageRoute<TTransformer extends Microsoft_AspNetCore_Mvc_Routing.DynamicRouteValueTransformer>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, state: unknown, order: int): Rewrap<this, void>;
|
|
248
248
|
MapFallback(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
249
249
|
MapFallback(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, handler: Function): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
250
250
|
MapFallback(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
@@ -267,8 +267,8 @@ interface __TsonicExtMethods_Microsoft_AspNetCore_Builder {
|
|
|
267
267
|
MapGroup(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, prefix: Microsoft_AspNetCore_Routing_Patterns.RoutePattern): Rewrap<this, Microsoft_AspNetCore_Routing.RouteGroupBuilder>;
|
|
268
268
|
MapHealthChecks(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
269
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>;
|
|
270
|
+
MapHub<THub extends Microsoft_AspNetCore_SignalR.Hub>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string): Rewrap<this, Microsoft_AspNetCore_Builder.HubEndpointConventionBuilder>;
|
|
271
|
+
MapHub<THub extends Microsoft_AspNetCore_SignalR.Hub>(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, configureOptions: System.Action_1<Microsoft_AspNetCore_Http_Connections.HttpConnectionDispatcherOptions>): Rewrap<this, Microsoft_AspNetCore_Builder.HubEndpointConventionBuilder>;
|
|
272
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
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
274
|
MapPatch(this: Microsoft_AspNetCore_Routing.IEndpointRouteBuilder, pattern: string, requestDelegate: Microsoft_AspNetCore_Http.RequestDelegate): Rewrap<this, Microsoft_AspNetCore_Builder.IEndpointConventionBuilder>;
|
|
@@ -595,8 +595,8 @@ interface __TsonicExtMethods_Microsoft_AspNetCore_Components_Web {
|
|
|
595
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
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
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>;
|
|
598
|
+
RegisterForJavaScript<TComponent extends Microsoft_AspNetCore_Components.IComponent>(this: Microsoft_AspNetCore_Components_Web.IJSComponentConfiguration, identifier: string): Rewrap<this, void>;
|
|
599
|
+
RegisterForJavaScript<TComponent extends Microsoft_AspNetCore_Components.IComponent>(this: Microsoft_AspNetCore_Components_Web.IJSComponentConfiguration, identifier: string, javaScriptInitializer: string): Rewrap<this, void>;
|
|
600
600
|
RegisterForJavaScript(this: Microsoft_AspNetCore_Components_Web.IJSComponentConfiguration, componentType: System.Type, identifier: string): Rewrap<this, void>;
|
|
601
601
|
RegisterForJavaScript(this: Microsoft_AspNetCore_Components_Web.IJSComponentConfiguration, componentType: System.Type, identifier: string, javaScriptInitializer: string): Rewrap<this, void>;
|
|
602
602
|
}
|
|
@@ -617,7 +617,7 @@ interface __TsonicExtMethods_Microsoft_AspNetCore_Connections {
|
|
|
617
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
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
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>;
|
|
620
|
+
UseConnectionHandler<TConnectionHandler extends Microsoft_AspNetCore_Connections.ConnectionHandler>(this: Microsoft_AspNetCore_Connections.IConnectionBuilder): Rewrap<this, Microsoft_AspNetCore_Connections.IConnectionBuilder>;
|
|
621
621
|
}
|
|
622
622
|
|
|
623
623
|
// Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Connections
|
|
@@ -634,7 +634,7 @@ export type ExtensionMethods_Microsoft_AspNetCore_Connections<TShape> =
|
|
|
634
634
|
// Extension method table for namespace: Microsoft.AspNetCore.DataProtection
|
|
635
635
|
interface __TsonicExtMethods_Microsoft_AspNetCore_DataProtection {
|
|
636
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>;
|
|
637
|
+
AddKeyEscrowSink<TImplementation extends Microsoft_AspNetCore_DataProtection_KeyManagement.IKeyEscrowSink>(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
638
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
639
|
AddKeyManagementOptions(this: Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_DataProtection_KeyManagement.KeyManagementOptions>): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtectionBuilder>;
|
|
640
640
|
CreateProtector(this: Microsoft_AspNetCore_DataProtection.IDataProtectionProvider, purposes: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_AspNetCore_DataProtection.IDataProtector>;
|
|
@@ -809,8 +809,8 @@ interface __TsonicExtMethods_Microsoft_AspNetCore_Http {
|
|
|
809
809
|
Accepts<TRequest>(this: Microsoft_AspNetCore_Builder.RouteHandlerBuilder, isOptional: boolean, contentType: string, ...additionalContentTypes: string[]): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
810
810
|
Accepts(this: Microsoft_AspNetCore_Builder.RouteHandlerBuilder, requestType: System.Type, contentType: string, ...additionalContentTypes: string[]): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
811
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>;
|
|
812
|
+
AddEndpointFilter<TFilterType extends Microsoft_AspNetCore_Http.IEndpointFilter>(this: Microsoft_AspNetCore_Builder.RouteHandlerBuilder): Rewrap<this, Microsoft_AspNetCore_Builder.RouteHandlerBuilder>;
|
|
813
|
+
AddEndpointFilter<TFilterType extends Microsoft_AspNetCore_Http.IEndpointFilter>(this: Microsoft_AspNetCore_Routing.RouteGroupBuilder): Rewrap<this, Microsoft_AspNetCore_Routing.RouteGroupBuilder>;
|
|
814
814
|
Append(this: Microsoft_AspNetCore_Http.IHeaderDictionary, key: string, value: Microsoft_Extensions_Primitives.StringValues): Rewrap<this, void>;
|
|
815
815
|
AppendCommaSeparatedValues(this: Microsoft_AspNetCore_Http.IHeaderDictionary, key: string, ...values: string[]): Rewrap<this, void>;
|
|
816
816
|
AppendList<T>(this: Microsoft_AspNetCore_Http.IHeaderDictionary, name: string, values: System_Collections_Generic.IList_1<T>): Rewrap<this, void>;
|
|
@@ -1072,9 +1072,9 @@ interface __TsonicExtMethods_Microsoft_AspNetCore_Mvc_ModelBinding {
|
|
|
1072
1072
|
GetMetadataForProperty(this: Microsoft_AspNetCore_Mvc_ModelBinding.IModelMetadataProvider, containerType: System.Type, propertyName: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ModelBinding.ModelMetadata>;
|
|
1073
1073
|
Remove<TModel>(this: Microsoft_AspNetCore_Mvc_ModelBinding.ModelStateDictionary, expression: System_Linq_Expressions.Expression_1<System.Func_2<TModel, unknown>>): Rewrap<this, boolean>;
|
|
1074
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>;
|
|
1075
|
+
RemoveType<TModelBinderProvider extends Microsoft_AspNetCore_Mvc_ModelBinding.IModelBinderProvider>(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ModelBinding.IModelBinderProvider>): Rewrap<this, void>;
|
|
1076
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>;
|
|
1077
|
+
RemoveType<TValueProviderFactory extends Microsoft_AspNetCore_Mvc_ModelBinding.IValueProviderFactory>(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ModelBinding.IValueProviderFactory>): Rewrap<this, void>;
|
|
1078
1078
|
RemoveType(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ModelBinding.IValueProviderFactory>, type: System.Type): Rewrap<this, void>;
|
|
1079
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
1080
|
}
|
|
@@ -1092,7 +1092,7 @@ export type ExtensionMethods_Microsoft_AspNetCore_Mvc_ModelBinding<TShape> =
|
|
|
1092
1092
|
|
|
1093
1093
|
// Extension method table for namespace: Microsoft.AspNetCore.Mvc.ModelBinding.Metadata
|
|
1094
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>;
|
|
1095
|
+
RemoveType<TMetadataDetailsProvider extends Microsoft_AspNetCore_Mvc_ModelBinding_Metadata.IMetadataDetailsProvider>(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ModelBinding_Metadata.IMetadataDetailsProvider>): Rewrap<this, void>;
|
|
1096
1096
|
RemoveType(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ModelBinding_Metadata.IMetadataDetailsProvider>, type: System.Type): Rewrap<this, void>;
|
|
1097
1097
|
}
|
|
1098
1098
|
|
|
@@ -1109,7 +1109,7 @@ export type ExtensionMethods_Microsoft_AspNetCore_Mvc_ModelBinding_Metadata<TSha
|
|
|
1109
1109
|
|
|
1110
1110
|
// Extension method table for namespace: Microsoft.AspNetCore.Mvc.ModelBinding.Validation
|
|
1111
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>;
|
|
1112
|
+
RemoveType<TModelValidatorProvider extends Microsoft_AspNetCore_Mvc_ModelBinding_Validation.IModelValidatorProvider>(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ModelBinding_Validation.IModelValidatorProvider>): Rewrap<this, void>;
|
|
1113
1113
|
RemoveType(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ModelBinding_Validation.IModelValidatorProvider>, type: System.Type): Rewrap<this, void>;
|
|
1114
1114
|
}
|
|
1115
1115
|
|
|
@@ -1232,8 +1232,8 @@ interface __TsonicExtMethods_Microsoft_AspNetCore_Mvc_Rendering {
|
|
|
1232
1232
|
RadioButton(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, value: unknown, htmlAttributes: unknown): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1233
1233
|
RadioButton(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, expression: string, value: unknown, isChecked: boolean): Rewrap<this, Microsoft_AspNetCore_Html.IHtmlContent>;
|
|
1234
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>>;
|
|
1235
|
+
RenderComponentAsync<TComponent extends Microsoft_AspNetCore_Components.IComponent>(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 extends Microsoft_AspNetCore_Components.IComponent>(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
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
1238
|
RenderPartial(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, partialViewName: string): Rewrap<this, void>;
|
|
1239
1239
|
RenderPartial(this: Microsoft_AspNetCore_Mvc_Rendering.IHtmlHelper, partialViewName: string, viewData: Microsoft_AspNetCore_Mvc_ViewFeatures.ViewDataDictionary): Rewrap<this, void>;
|
|
@@ -1490,7 +1490,7 @@ export type ExtensionMethods_Microsoft_AspNetCore_Server_IIS<TShape> =
|
|
|
1490
1490
|
// Extension method table for namespace: Microsoft.AspNetCore.SignalR
|
|
1491
1491
|
interface __TsonicExtMethods_Microsoft_AspNetCore_SignalR {
|
|
1492
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>;
|
|
1493
|
+
AddFilter<TFilter extends Microsoft_AspNetCore_SignalR.IHubFilter>(this: Microsoft_AspNetCore_SignalR.HubOptions): Rewrap<this, void>;
|
|
1494
1494
|
AddFilter(this: Microsoft_AspNetCore_SignalR.HubOptions, filterType: System.Type): Rewrap<this, void>;
|
|
1495
1495
|
AllExcept<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, excludedConnectionId1: string): Rewrap<this, T>;
|
|
1496
1496
|
AllExcept<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, excludedConnectionId1: string, excludedConnectionId2: string): Rewrap<this, T>;
|
|
@@ -1552,7 +1552,7 @@ interface __TsonicExtMethods_Microsoft_AspNetCore_SignalR {
|
|
|
1552
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
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
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>;
|
|
1555
|
+
UseHub<THub extends Microsoft_AspNetCore_SignalR.Hub>(this: Microsoft_AspNetCore_Connections.IConnectionBuilder): Rewrap<this, Microsoft_AspNetCore_Connections.IConnectionBuilder>;
|
|
1556
1556
|
Users<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, user1: string): Rewrap<this, T>;
|
|
1557
1557
|
Users<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, user1: string, user2: string): Rewrap<this, T>;
|
|
1558
1558
|
Users<T>(this: Microsoft_AspNetCore_SignalR.IHubClients_1<T>, user1: string, user2: string, user3: string): Rewrap<this, T>;
|
|
@@ -1702,15 +1702,15 @@ interface __TsonicExtMethods_Microsoft_Extensions_DependencyInjection {
|
|
|
1702
1702
|
AddEndpointsApiExplorer(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1703
1703
|
AddExceptionHandler(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<Microsoft_AspNetCore_Builder.ExceptionHandlerOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1704
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>;
|
|
1705
|
+
AddExceptionHandler<T extends Microsoft_AspNetCore_Diagnostics.IExceptionHandler>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1706
1706
|
AddFormatterMappings(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Formatters.FormatterMappings>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1707
1707
|
AddFormatterMappings(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1708
1708
|
AddFormatterMappings(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc_Formatters.FormatterMappings>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1709
1709
|
AddHttpContextAccessor(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1710
1710
|
AddHttpLogging(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1711
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>;
|
|
1712
|
+
AddHttpLoggingInterceptor<T extends Microsoft_AspNetCore_HttpLogging.IHttpLoggingInterceptor>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1713
|
+
AddHubOptions<THub extends Microsoft_AspNetCore_SignalR.Hub>(this: Microsoft_AspNetCore_SignalR.ISignalRServerBuilder, configure: System.Action_1<Microsoft_AspNetCore_SignalR.HubOptions_1<THub>>): Rewrap<this, Microsoft_AspNetCore_SignalR.ISignalRServerBuilder>;
|
|
1714
1714
|
AddHubOptions(this: Microsoft_Extensions_DependencyInjection.IServerSideBlazorBuilder, configure: System.Action_1<Microsoft_AspNetCore_SignalR.HubOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServerSideBlazorBuilder>;
|
|
1715
1715
|
AddIdentity<TUser, TRole>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityBuilder>;
|
|
1716
1716
|
AddIdentity<TUser, TRole>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, setupAction: System.Action_1<Microsoft_AspNetCore_Identity.IdentityOptions>): Rewrap<this, Microsoft_AspNetCore_Identity.IdentityBuilder>;
|
|
@@ -1745,8 +1745,8 @@ interface __TsonicExtMethods_Microsoft_Extensions_DependencyInjection {
|
|
|
1745
1745
|
AddMvcOptions(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, setupAction: System.Action_1<Microsoft_AspNetCore_Mvc.MvcOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1746
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
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
|
|
1749
|
-
AddOAuth<TOptions, THandler
|
|
1748
|
+
AddOAuth<TOptions extends Microsoft_AspNetCore_Authentication_OAuth.OAuthOptions, THandler extends Microsoft_AspNetCore_Authentication_OAuth.OAuthHandler_1<TOptions>>(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder, authenticationScheme: string, configureOptions: System.Action_1<TOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1749
|
+
AddOAuth<TOptions extends Microsoft_AspNetCore_Authentication_OAuth.OAuthOptions, THandler extends Microsoft_AspNetCore_Authentication_OAuth.OAuthHandler_1<TOptions>>(this: Microsoft_AspNetCore_Authentication.AuthenticationBuilder, authenticationScheme: string, displayName: string, configureOptions: System.Action_1<TOptions>): Rewrap<this, Microsoft_AspNetCore_Authentication.AuthenticationBuilder>;
|
|
1750
1750
|
AddOutputCache(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1751
1751
|
AddOutputCache(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<Microsoft_AspNetCore_OutputCaching.OutputCacheOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1752
1752
|
AddPageRoute(this: Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection, pageName: string, route: string): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
@@ -1827,10 +1827,10 @@ interface __TsonicExtMethods_Microsoft_Extensions_DependencyInjection {
|
|
|
1827
1827
|
ConfigureFilter(this: Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection, filter: Microsoft_AspNetCore_Mvc_Filters.IFilterMetadata): Rewrap<this, Microsoft_AspNetCore_Mvc_ApplicationModels.PageConventionCollection>;
|
|
1828
1828
|
ConfigureHttpJsonOptions(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<Microsoft_AspNetCore_Http_Json.JsonOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
1829
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>;
|
|
1830
|
+
InitializeTagHelper<TTagHelper extends Microsoft_AspNetCore_Razor_TagHelpers.ITagHelper>(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, initialize: System.Action_2<TTagHelper, Microsoft_AspNetCore_Mvc_Rendering.ViewContext>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1831
|
+
InitializeTagHelper<TTagHelper extends Microsoft_AspNetCore_Razor_TagHelpers.ITagHelper>(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, initialize: System.Action_2<TTagHelper, Microsoft_AspNetCore_Mvc_Rendering.ViewContext>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|
|
1832
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>;
|
|
1833
|
+
RemoveType<TApplicationModelConvention extends Microsoft_AspNetCore_Mvc_ApplicationModels.IApplicationModelConvention>(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ApplicationModels.IApplicationModelConvention>): Rewrap<this, void>;
|
|
1834
1834
|
RemoveType(this: System_Collections_Generic.IList_1<Microsoft_AspNetCore_Mvc_ApplicationModels.IApplicationModelConvention>, type: System.Type): Rewrap<this, void>;
|
|
1835
1835
|
SetCompatibilityVersion(this: Microsoft_Extensions_DependencyInjection.IMvcBuilder, version: Microsoft_AspNetCore_Mvc.CompatibilityVersion): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcBuilder>;
|
|
1836
1836
|
SetCompatibilityVersion(this: Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder, version: Microsoft_AspNetCore_Mvc.CompatibilityVersion): Rewrap<this, Microsoft_Extensions_DependencyInjection.IMvcCoreBuilder>;
|