@tsonic/aspnetcore 10.0.2 → 10.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.AspNetCore/internal/index.d.ts +6 -6
- package/Microsoft.AspNetCore.Antiforgery/internal/index.d.ts +27 -9
- package/Microsoft.AspNetCore.Authentication/internal/index.d.ts +250 -112
- package/Microsoft.AspNetCore.Authentication.BearerToken/internal/index.d.ts +13 -5
- package/Microsoft.AspNetCore.Authentication.Cookies/internal/index.d.ts +64 -34
- package/Microsoft.AspNetCore.Authentication.OAuth/internal/index.d.ts +47 -28
- package/Microsoft.AspNetCore.Authentication.OAuth.Claims/internal/index.d.ts +28 -11
- package/Microsoft.AspNetCore.Authorization/internal/index.d.ts +137 -75
- package/Microsoft.AspNetCore.Authorization.Infrastructure/internal/index.d.ts +53 -32
- package/Microsoft.AspNetCore.Authorization.Policy/internal/index.d.ts +21 -13
- package/Microsoft.AspNetCore.Builder/internal/index.d.ts +221 -139
- package/Microsoft.AspNetCore.Builder.Extensions/internal/index.d.ts +15 -5
- package/Microsoft.AspNetCore.Components/internal/index.d.ts +358 -187
- package/Microsoft.AspNetCore.Components.Authorization/internal/index.d.ts +46 -17
- package/Microsoft.AspNetCore.Components.CompilerServices/internal/index.d.ts +8 -8
- package/Microsoft.AspNetCore.Components.Endpoints/internal/index.d.ts +15 -5
- package/Microsoft.AspNetCore.Components.Endpoints.Infrastructure/internal/index.d.ts +6 -4
- package/Microsoft.AspNetCore.Components.Forms/internal/index.d.ts +220 -89
- package/Microsoft.AspNetCore.Components.Forms.Mapping/internal/index.d.ts +15 -9
- package/Microsoft.AspNetCore.Components.Forms.Mapping.d.ts +3 -0
- package/Microsoft.AspNetCore.Components.HtmlRendering.Infrastructure/internal/index.d.ts +10 -5
- package/Microsoft.AspNetCore.Components.Infrastructure/internal/index.d.ts +9 -7
- package/Microsoft.AspNetCore.Components.Infrastructure.d.ts +3 -0
- package/Microsoft.AspNetCore.Components.RenderTree/internal/index.d.ts +44 -13
- package/Microsoft.AspNetCore.Components.Rendering/internal/index.d.ts +16 -8
- package/Microsoft.AspNetCore.Components.Routing/internal/index.d.ts +55 -22
- package/Microsoft.AspNetCore.Components.Sections/internal/index.d.ts +15 -9
- package/Microsoft.AspNetCore.Components.Server/internal/index.d.ts +33 -20
- package/Microsoft.AspNetCore.Components.Server.Circuits/internal/index.d.ts +11 -5
- package/Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage/internal/index.d.ts +13 -5
- package/Microsoft.AspNetCore.Components.Web/internal/index.d.ts +105 -37
- package/Microsoft.AspNetCore.Components.Web.HtmlRendering/internal/index.d.ts +6 -4
- package/Microsoft.AspNetCore.Components.Web.Infrastructure/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Components.Web.Internal/internal/index.d.ts +3 -1
- package/Microsoft.AspNetCore.Components.Web.Virtualization/internal/index.d.ts +27 -15
- package/Microsoft.AspNetCore.Connections/internal/index.d.ts +130 -49
- package/Microsoft.AspNetCore.Connections.Abstractions/internal/index.d.ts +6 -4
- package/Microsoft.AspNetCore.Connections.Features/internal/index.d.ts +64 -20
- package/Microsoft.AspNetCore.CookiePolicy/internal/index.d.ts +13 -7
- package/Microsoft.AspNetCore.Cors/internal/index.d.ts +19 -8
- package/Microsoft.AspNetCore.Cors.Infrastructure/internal/index.d.ts +55 -29
- package/Microsoft.AspNetCore.Cryptography.KeyDerivation/internal/index.d.ts +2 -2
- package/Microsoft.AspNetCore.DataProtection/internal/index.d.ts +43 -20
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption/internal/index.d.ts +28 -16
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel/internal/index.d.ts +59 -27
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel.d.ts +3 -0
- package/Microsoft.AspNetCore.DataProtection.Infrastructure/internal/index.d.ts +3 -1
- package/Microsoft.AspNetCore.DataProtection.Internal/internal/index.d.ts +3 -1
- package/Microsoft.AspNetCore.DataProtection.KeyManagement/internal/index.d.ts +32 -19
- package/Microsoft.AspNetCore.DataProtection.KeyManagement.Internal/internal/index.d.ts +19 -5
- package/Microsoft.AspNetCore.DataProtection.Repositories/internal/index.d.ts +31 -15
- package/Microsoft.AspNetCore.DataProtection.XmlEncryption/internal/index.d.ts +58 -32
- package/Microsoft.AspNetCore.Diagnostics/internal/index.d.ts +64 -21
- package/Microsoft.AspNetCore.Diagnostics.HealthChecks/internal/index.d.ts +15 -11
- package/Microsoft.AspNetCore.HostFiltering/internal/index.d.ts +12 -8
- package/Microsoft.AspNetCore.Hosting/internal/index.d.ts +89 -47
- package/Microsoft.AspNetCore.Hosting.Builder/internal/index.d.ts +9 -5
- package/Microsoft.AspNetCore.Hosting.Infrastructure/internal/index.d.ts +10 -6
- package/Microsoft.AspNetCore.Hosting.Server/internal/index.d.ts +16 -4
- package/Microsoft.AspNetCore.Hosting.Server.Abstractions/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Hosting.Server.Features/internal/index.d.ts +12 -8
- package/Microsoft.AspNetCore.Hosting.StaticWebAssets/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Html/internal/index.d.ts +31 -13
- package/Microsoft.AspNetCore.Http/internal/index.d.ts +408 -199
- package/Microsoft.AspNetCore.Http.Connections/internal/index.d.ts +34 -16
- package/Microsoft.AspNetCore.Http.Connections.Features/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Http.Extensions/internal/index.d.ts +21 -16
- package/Microsoft.AspNetCore.Http.Features/internal/index.d.ts +208 -88
- package/Microsoft.AspNetCore.Http.Features.Authentication/internal/index.d.ts +10 -6
- package/Microsoft.AspNetCore.Http.Headers/internal/index.d.ts +31 -27
- package/Microsoft.AspNetCore.Http.HttpResults/internal/index.d.ts +378 -171
- package/Microsoft.AspNetCore.Http.Json/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Http.Metadata/internal/index.d.ts +74 -26
- package/Microsoft.AspNetCore.Http.Timeouts/internal/index.d.ts +18 -8
- package/Microsoft.AspNetCore.HttpLogging/internal/index.d.ts +23 -11
- package/Microsoft.AspNetCore.HttpOverrides/internal/index.d.ts +23 -13
- package/Microsoft.AspNetCore.HttpsPolicy/internal/index.d.ts +21 -13
- package/Microsoft.AspNetCore.Identity/internal/index.d.ts +725 -456
- package/Microsoft.AspNetCore.Identity.Data/internal/index.d.ts +23 -3
- package/Microsoft.AspNetCore.Identity.UI.Services/internal/index.d.ts +10 -6
- package/Microsoft.AspNetCore.Localization/internal/index.d.ts +57 -27
- package/Microsoft.AspNetCore.Localization.Routing/internal/index.d.ts +7 -3
- package/Microsoft.AspNetCore.Mvc/internal/index.d.ts +724 -205
- package/Microsoft.AspNetCore.Mvc.Abstractions/internal/index.d.ts +27 -13
- package/Microsoft.AspNetCore.Mvc.ActionConstraints/internal/index.d.ts +37 -13
- package/Microsoft.AspNetCore.Mvc.ApiExplorer/internal/index.d.ts +76 -30
- package/Microsoft.AspNetCore.Mvc.ApplicationModels/internal/index.d.ts +244 -125
- package/Microsoft.AspNetCore.Mvc.ApplicationParts/internal/index.d.ts +59 -25
- package/Microsoft.AspNetCore.Mvc.Authorization/internal/index.d.ts +21 -10
- package/Microsoft.AspNetCore.Mvc.Controllers/internal/index.d.ts +51 -24
- package/Microsoft.AspNetCore.Mvc.Core.Infrastructure/internal/index.d.ts +3 -1
- package/Microsoft.AspNetCore.Mvc.Cors/internal/index.d.ts +12 -7
- package/Microsoft.AspNetCore.Mvc.DataAnnotations/internal/index.d.ts +43 -18
- package/Microsoft.AspNetCore.Mvc.Diagnostics/internal/index.d.ts +431 -68
- package/Microsoft.AspNetCore.Mvc.Filters/internal/index.d.ts +140 -44
- package/Microsoft.AspNetCore.Mvc.Formatters/internal/index.d.ts +192 -89
- package/Microsoft.AspNetCore.Mvc.Formatters.Xml/internal/index.d.ts +77 -36
- package/Microsoft.AspNetCore.Mvc.Formatters.Xml.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.Infrastructure/internal/index.d.ts +162 -66
- package/Microsoft.AspNetCore.Mvc.Localization/internal/index.d.ts +48 -25
- package/Microsoft.AspNetCore.Mvc.ModelBinding/internal/index.d.ts +379 -133
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Binders/internal/index.d.ts +217 -128
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Metadata/internal/index.d.ts +156 -102
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Validation/internal/index.d.ts +100 -43
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Validation.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.Razor/internal/index.d.ts +105 -56
- package/Microsoft.AspNetCore.Mvc.Razor.Compilation/internal/index.d.ts +19 -9
- package/Microsoft.AspNetCore.Mvc.Razor.Infrastructure/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Mvc.Razor.Internal/internal/index.d.ts +4 -2
- package/Microsoft.AspNetCore.Mvc.Razor.TagHelpers/internal/index.d.ts +43 -18
- package/Microsoft.AspNetCore.Mvc.RazorPages/internal/index.d.ts +81 -42
- package/Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure/internal/index.d.ts +70 -37
- package/Microsoft.AspNetCore.Mvc.Rendering/internal/index.d.ts +123 -95
- package/Microsoft.AspNetCore.Mvc.Routing/internal/index.d.ts +57 -25
- package/Microsoft.AspNetCore.Mvc.TagHelpers/internal/index.d.ts +151 -72
- package/Microsoft.AspNetCore.Mvc.TagHelpers.Cache/internal/index.d.ts +41 -23
- package/Microsoft.AspNetCore.Mvc.ViewComponents/internal/index.d.ts +94 -48
- package/Microsoft.AspNetCore.Mvc.ViewEngines/internal/index.d.ts +24 -11
- package/Microsoft.AspNetCore.Mvc.ViewFeatures/internal/index.d.ts +266 -144
- package/Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers/internal/index.d.ts +7 -3
- package/Microsoft.AspNetCore.Mvc.ViewFeatures.Infrastructure/internal/index.d.ts +7 -5
- package/Microsoft.AspNetCore.OutputCaching/internal/index.d.ts +44 -26
- package/Microsoft.AspNetCore.RateLimiting/internal/index.d.ts +22 -12
- package/Microsoft.AspNetCore.Razor.Hosting/internal/index.d.ts +28 -10
- package/Microsoft.AspNetCore.Razor.Runtime.TagHelpers/internal/index.d.ts +17 -11
- package/Microsoft.AspNetCore.Razor.TagHelpers/internal/index.d.ts +100 -31
- package/Microsoft.AspNetCore.RequestDecompression/internal/index.d.ts +11 -5
- package/Microsoft.AspNetCore.ResponseCaching/internal/index.d.ts +18 -10
- package/Microsoft.AspNetCore.ResponseCompression/internal/index.d.ts +64 -29
- package/Microsoft.AspNetCore.Rewrite/internal/index.d.ts +20 -12
- package/Microsoft.AspNetCore.Routing/internal/index.d.ts +291 -131
- package/Microsoft.AspNetCore.Routing.Constraints/internal/index.d.ts +191 -79
- package/Microsoft.AspNetCore.Routing.Internal/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Routing.Matching/internal/index.d.ts +61 -25
- package/Microsoft.AspNetCore.Routing.Patterns/internal/index.d.ts +40 -20
- package/Microsoft.AspNetCore.Routing.Template/internal/index.d.ts +25 -9
- package/Microsoft.AspNetCore.Routing.Tree/internal/index.d.ts +29 -13
- package/Microsoft.AspNetCore.Server.HttpSys/internal/index.d.ts +50 -18
- package/Microsoft.AspNetCore.Server.IIS/internal/index.d.ts +12 -4
- package/Microsoft.AspNetCore.Server.IISIntegration/internal/index.d.ts +17 -11
- package/Microsoft.AspNetCore.Server.Kestrel/internal/index.d.ts +16 -12
- package/Microsoft.AspNetCore.Server.Kestrel.Core/internal/index.d.ts +56 -36
- package/Microsoft.AspNetCore.Server.Kestrel.Core.Features/internal/index.d.ts +17 -3
- package/Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http/internal/index.d.ts +20 -8
- package/Microsoft.AspNetCore.Server.Kestrel.Https/internal/index.d.ts +23 -17
- package/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes/internal/index.d.ts +10 -6
- package/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic/internal/index.d.ts +6 -4
- package/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/internal/index.d.ts +29 -18
- package/Microsoft.AspNetCore.Session/internal/index.d.ts +32 -22
- package/Microsoft.AspNetCore.SignalR/internal/index.d.ts +191 -91
- package/Microsoft.AspNetCore.SignalR.Protocol/internal/index.d.ts +63 -25
- package/Microsoft.AspNetCore.StaticAssets/internal/index.d.ts +21 -11
- package/Microsoft.AspNetCore.StaticAssets.Infrastructure/internal/index.d.ts +4 -4
- package/Microsoft.AspNetCore.StaticFiles/internal/index.d.ts +38 -22
- package/Microsoft.AspNetCore.StaticFiles.Infrastructure/internal/index.d.ts +7 -3
- package/Microsoft.AspNetCore.WebSockets/internal/index.d.ts +14 -10
- package/Microsoft.AspNetCore.WebSockets.d.ts +3 -0
- package/Microsoft.AspNetCore.WebUtilities/internal/index.d.ts +119 -73
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +135 -123
- package/Microsoft.Extensions.Hosting/internal/index.d.ts +10 -8
- package/Microsoft.Extensions.Hosting.d.ts +3 -0
- package/Microsoft.JSInterop/internal/index.d.ts +95 -52
- package/Microsoft.JSInterop.Implementation/internal/index.d.ts +40 -26
- package/Microsoft.JSInterop.Infrastructure/internal/index.d.ts +10 -2
- package/Microsoft.Net.Http.Headers/internal/index.d.ts +92 -60
- package/System.Formats.Cbor/internal/index.d.ts +29 -21
- package/System.Security.Claims/internal/index.d.ts +3 -3
- package/System.Security.Claims.d.ts +3 -0
- package/System.Threading.RateLimiting/internal/index.d.ts +84 -29
- package/__internal/extensions/index.d.ts +1776 -1190
- package/package.json +4 -4
|
@@ -15,19 +15,19 @@ import * as Microsoft_AspNetCore_Http_Internal from "../../Microsoft.AspNetCore.
|
|
|
15
15
|
import type { Endpoint, EndpointFilterDelegate, EndpointFilterFactoryContext, EndpointMetadataCollection, FragmentString, HostString, HttpContext, HttpRequest, HttpResponse, PathString, RequestDelegate, RequestDelegateFactoryOptions, RequestDelegateMetadataResult, RequestDelegateResult } from "../../Microsoft.AspNetCore.Http/internal/index.js";
|
|
16
16
|
import type { RoutePattern, RoutePatternParameterPart, RoutePatternParameterPolicyReference } from "../../Microsoft.AspNetCore.Routing.Patterns/internal/index.js";
|
|
17
17
|
import type { RouteTemplate, TemplatePart } from "../../Microsoft.AspNetCore.Routing.Template/internal/index.js";
|
|
18
|
-
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic.js";
|
|
19
|
-
import type {
|
|
20
|
-
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections.js";
|
|
21
|
-
import type { IEnumerable, IEnumerator } from "@tsonic/dotnet/System.Collections.js";
|
|
22
|
-
import
|
|
23
|
-
import
|
|
24
|
-
import type {
|
|
25
|
-
import
|
|
26
|
-
import
|
|
27
|
-
import type {
|
|
28
|
-
import type { ILogger } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Logging.js";
|
|
29
|
-
import type {
|
|
30
|
-
import type { IChangeToken } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Primitives.js";
|
|
18
|
+
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
19
|
+
import type { ICollection_1, IDictionary_2, IEnumerable_1, IEnumerator_1, IEqualityComparer_1, IList_1, IReadOnlyCollection_1, IReadOnlyDictionary_2, IReadOnlyList_1, KeyValuePair_2 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
20
|
+
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
21
|
+
import type { IEnumerable, IEnumerator } from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
22
|
+
import type { MethodInfo } from "@tsonic/dotnet/System.Reflection/internal/index.js";
|
|
23
|
+
import * as System_Runtime_Serialization_Internal from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
24
|
+
import type { ISerializable } from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
25
|
+
import type { Task } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
26
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
27
|
+
import type { Action_1, Attribute, Boolean as ClrBoolean, Delegate, Double, Enum, Exception, Func_3, Func_4, IComparable, IConvertible, IDisposable, IFormattable, Int32, IServiceProvider, ISpanFormattable, Nullable_1, Object as ClrObject, String as ClrString, Type, ValueType, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
28
|
+
import type { ILogger } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Logging/internal/index.js";
|
|
29
|
+
import type { IOptions_1 } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Options/internal/index.js";
|
|
30
|
+
import type { IChangeToken } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Primitives/internal/index.js";
|
|
31
31
|
|
|
32
32
|
export enum RouteDirection {
|
|
33
33
|
IncomingRequest = 0,
|
|
@@ -36,13 +36,17 @@ export enum RouteDirection {
|
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
export interface IDataTokensMetadata$instance {
|
|
39
|
-
readonly
|
|
39
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IDataTokensMetadata: never;
|
|
40
|
+
|
|
41
|
+
readonly DataTokens: IReadOnlyDictionary_2<System_Internal.String, unknown | undefined>;
|
|
40
42
|
}
|
|
41
43
|
|
|
42
44
|
|
|
43
45
|
export type IDataTokensMetadata = IDataTokensMetadata$instance;
|
|
44
46
|
|
|
45
47
|
export interface IDynamicEndpointMetadata$instance {
|
|
48
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IDynamicEndpointMetadata: never;
|
|
49
|
+
|
|
46
50
|
readonly IsDynamic: boolean;
|
|
47
51
|
}
|
|
48
52
|
|
|
@@ -50,13 +54,17 @@ export interface IDynamicEndpointMetadata$instance {
|
|
|
50
54
|
export type IDynamicEndpointMetadata = IDynamicEndpointMetadata$instance;
|
|
51
55
|
|
|
52
56
|
export interface IEndpointAddressScheme_1$instance<TAddress> {
|
|
53
|
-
|
|
57
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IEndpointAddressScheme_1: never;
|
|
58
|
+
|
|
59
|
+
FindEndpoints(address: TAddress): IEnumerable_1<Endpoint>;
|
|
54
60
|
}
|
|
55
61
|
|
|
56
62
|
|
|
57
63
|
export type IEndpointAddressScheme_1<TAddress> = IEndpointAddressScheme_1$instance<TAddress>;
|
|
58
64
|
|
|
59
65
|
export interface IEndpointGroupNameMetadata$instance {
|
|
66
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IEndpointGroupNameMetadata: never;
|
|
67
|
+
|
|
60
68
|
readonly EndpointGroupName: string;
|
|
61
69
|
}
|
|
62
70
|
|
|
@@ -64,6 +72,8 @@ export interface IEndpointGroupNameMetadata$instance {
|
|
|
64
72
|
export type IEndpointGroupNameMetadata = IEndpointGroupNameMetadata$instance;
|
|
65
73
|
|
|
66
74
|
export interface IEndpointNameMetadata$instance {
|
|
75
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IEndpointNameMetadata: never;
|
|
76
|
+
|
|
67
77
|
readonly EndpointName: string;
|
|
68
78
|
}
|
|
69
79
|
|
|
@@ -71,8 +81,10 @@ export interface IEndpointNameMetadata$instance {
|
|
|
71
81
|
export type IEndpointNameMetadata = IEndpointNameMetadata$instance;
|
|
72
82
|
|
|
73
83
|
export interface IEndpointRouteBuilder$instance {
|
|
84
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IEndpointRouteBuilder: never;
|
|
85
|
+
|
|
74
86
|
readonly ServiceProvider: IServiceProvider;
|
|
75
|
-
readonly DataSources:
|
|
87
|
+
readonly DataSources: ICollection_1<EndpointDataSource>;
|
|
76
88
|
CreateApplicationBuilder(): IApplicationBuilder;
|
|
77
89
|
}
|
|
78
90
|
|
|
@@ -80,6 +92,8 @@ export interface IEndpointRouteBuilder$instance {
|
|
|
80
92
|
export type IEndpointRouteBuilder = IEndpointRouteBuilder$instance;
|
|
81
93
|
|
|
82
94
|
export interface IExcludeFromDescriptionMetadata$instance {
|
|
95
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IExcludeFromDescriptionMetadata: never;
|
|
96
|
+
|
|
83
97
|
readonly ExcludeFromDescription: boolean;
|
|
84
98
|
}
|
|
85
99
|
|
|
@@ -87,21 +101,27 @@ export interface IExcludeFromDescriptionMetadata$instance {
|
|
|
87
101
|
export type IExcludeFromDescriptionMetadata = IExcludeFromDescriptionMetadata$instance;
|
|
88
102
|
|
|
89
103
|
export interface IHostMetadata$instance {
|
|
90
|
-
readonly
|
|
104
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IHostMetadata: never;
|
|
105
|
+
|
|
106
|
+
readonly Hosts: IReadOnlyList_1<System_Internal.String>;
|
|
91
107
|
}
|
|
92
108
|
|
|
93
109
|
|
|
94
110
|
export type IHostMetadata = IHostMetadata$instance;
|
|
95
111
|
|
|
96
112
|
export interface IHttpMethodMetadata$instance {
|
|
113
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IHttpMethodMetadata: never;
|
|
114
|
+
|
|
97
115
|
AcceptCorsPreflight: boolean;
|
|
98
|
-
readonly HttpMethods:
|
|
116
|
+
readonly HttpMethods: IReadOnlyList_1<System_Internal.String>;
|
|
99
117
|
}
|
|
100
118
|
|
|
101
119
|
|
|
102
120
|
export type IHttpMethodMetadata = IHttpMethodMetadata$instance;
|
|
103
121
|
|
|
104
122
|
export interface IInlineConstraintResolver$instance {
|
|
123
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IInlineConstraintResolver: never;
|
|
124
|
+
|
|
105
125
|
ResolveConstraint(inlineConstraint: string): IRouteConstraint | undefined;
|
|
106
126
|
}
|
|
107
127
|
|
|
@@ -109,6 +129,8 @@ export interface IInlineConstraintResolver$instance {
|
|
|
109
129
|
export type IInlineConstraintResolver = IInlineConstraintResolver$instance;
|
|
110
130
|
|
|
111
131
|
export interface INamedRouter$instance extends IRouter {
|
|
132
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_INamedRouter: never;
|
|
133
|
+
|
|
112
134
|
readonly Name: string | undefined;
|
|
113
135
|
GetVirtualPath(context: VirtualPathContext): VirtualPathData | undefined;
|
|
114
136
|
RouteAsync(context: RouteContext): Task;
|
|
@@ -120,6 +142,8 @@ export interface INamedRouter$instance extends IRouter$instance {}
|
|
|
120
142
|
export type INamedRouter = INamedRouter$instance;
|
|
121
143
|
|
|
122
144
|
export interface IOutboundParameterTransformer$instance extends IParameterPolicy {
|
|
145
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IOutboundParameterTransformer: never;
|
|
146
|
+
|
|
123
147
|
TransformOutbound(value: unknown): string | undefined;
|
|
124
148
|
}
|
|
125
149
|
|
|
@@ -129,17 +153,21 @@ export interface IOutboundParameterTransformer$instance extends IParameterPolicy
|
|
|
129
153
|
export type IOutboundParameterTransformer = IOutboundParameterTransformer$instance;
|
|
130
154
|
|
|
131
155
|
export interface IParameterPolicy$instance {
|
|
156
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
157
|
+
|
|
132
158
|
}
|
|
133
159
|
|
|
134
160
|
|
|
135
161
|
export type IParameterPolicy = IParameterPolicy$instance;
|
|
136
162
|
|
|
137
163
|
export interface IRouteBuilder$instance {
|
|
164
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteBuilder: never;
|
|
165
|
+
|
|
138
166
|
readonly ApplicationBuilder: IApplicationBuilder;
|
|
139
167
|
get DefaultHandler(): IRouter | undefined;
|
|
140
168
|
set DefaultHandler(value: IRouter | undefined);
|
|
141
169
|
readonly ServiceProvider: IServiceProvider;
|
|
142
|
-
readonly Routes:
|
|
170
|
+
readonly Routes: IList_1<IRouter>;
|
|
143
171
|
Build(): IRouter;
|
|
144
172
|
}
|
|
145
173
|
|
|
@@ -147,6 +175,8 @@ export interface IRouteBuilder$instance {
|
|
|
147
175
|
export type IRouteBuilder = IRouteBuilder$instance;
|
|
148
176
|
|
|
149
177
|
export interface IRouteCollection$instance extends IRouter {
|
|
178
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteCollection: never;
|
|
179
|
+
|
|
150
180
|
Add(router: IRouter): void;
|
|
151
181
|
GetVirtualPath(context: VirtualPathContext): VirtualPathData | undefined;
|
|
152
182
|
RouteAsync(context: RouteContext): Task;
|
|
@@ -158,6 +188,8 @@ export interface IRouteCollection$instance extends IRouter$instance {}
|
|
|
158
188
|
export type IRouteCollection = IRouteCollection$instance;
|
|
159
189
|
|
|
160
190
|
export interface IRouteConstraint$instance extends IParameterPolicy {
|
|
191
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
192
|
+
|
|
161
193
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
162
194
|
}
|
|
163
195
|
|
|
@@ -167,6 +199,8 @@ export interface IRouteConstraint$instance extends IParameterPolicy$instance {}
|
|
|
167
199
|
export type IRouteConstraint = IRouteConstraint$instance;
|
|
168
200
|
|
|
169
201
|
export interface IRouteHandler$instance {
|
|
202
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteHandler: never;
|
|
203
|
+
|
|
170
204
|
GetRequestHandler(httpContext: HttpContext, routeData: RouteData): RequestDelegate;
|
|
171
205
|
}
|
|
172
206
|
|
|
@@ -174,6 +208,8 @@ export interface IRouteHandler$instance {
|
|
|
174
208
|
export type IRouteHandler = IRouteHandler$instance;
|
|
175
209
|
|
|
176
210
|
export interface IRouteNameMetadata$instance {
|
|
211
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteNameMetadata: never;
|
|
212
|
+
|
|
177
213
|
readonly RouteName: string | undefined;
|
|
178
214
|
}
|
|
179
215
|
|
|
@@ -181,6 +217,8 @@ export interface IRouteNameMetadata$instance {
|
|
|
181
217
|
export type IRouteNameMetadata = IRouteNameMetadata$instance;
|
|
182
218
|
|
|
183
219
|
export interface IRouter$instance {
|
|
220
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouter: never;
|
|
221
|
+
|
|
184
222
|
GetVirtualPath(context: VirtualPathContext): VirtualPathData | undefined;
|
|
185
223
|
RouteAsync(context: RouteContext): Task;
|
|
186
224
|
}
|
|
@@ -189,6 +227,8 @@ export interface IRouter$instance {
|
|
|
189
227
|
export type IRouter = IRouter$instance;
|
|
190
228
|
|
|
191
229
|
export interface IRoutingFeature$instance {
|
|
230
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRoutingFeature: never;
|
|
231
|
+
|
|
192
232
|
get RouteData(): RouteData | undefined;
|
|
193
233
|
set RouteData(value: RouteData | undefined);
|
|
194
234
|
}
|
|
@@ -197,6 +237,8 @@ export interface IRoutingFeature$instance {
|
|
|
197
237
|
export type IRoutingFeature = IRoutingFeature$instance;
|
|
198
238
|
|
|
199
239
|
export interface ISuppressLinkGenerationMetadata$instance {
|
|
240
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_ISuppressLinkGenerationMetadata: never;
|
|
241
|
+
|
|
200
242
|
readonly SuppressLinkGeneration: boolean;
|
|
201
243
|
}
|
|
202
244
|
|
|
@@ -204,6 +246,8 @@ export interface ISuppressLinkGenerationMetadata$instance {
|
|
|
204
246
|
export type ISuppressLinkGenerationMetadata = ISuppressLinkGenerationMetadata$instance;
|
|
205
247
|
|
|
206
248
|
export interface ISuppressMatchingMetadata$instance {
|
|
249
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_ISuppressMatchingMetadata: never;
|
|
250
|
+
|
|
207
251
|
readonly SuppressMatching: boolean;
|
|
208
252
|
}
|
|
209
253
|
|
|
@@ -211,19 +255,27 @@ export interface ISuppressMatchingMetadata$instance {
|
|
|
211
255
|
export type ISuppressMatchingMetadata = ISuppressMatchingMetadata$instance;
|
|
212
256
|
|
|
213
257
|
export interface RouteData_RouteDataSnapshot$instance {
|
|
258
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RouteData_RouteDataSnapshot: never;
|
|
259
|
+
|
|
214
260
|
Restore(): void;
|
|
215
261
|
}
|
|
216
262
|
|
|
217
263
|
|
|
218
264
|
export const RouteData_RouteDataSnapshot: {
|
|
219
|
-
new(routeData: RouteData, dataTokens: RouteValueDictionary, routers:
|
|
265
|
+
new(routeData: RouteData, dataTokens: RouteValueDictionary, routers: IList_1<IRouter>, values: RouteValueDictionary): RouteData_RouteDataSnapshot;
|
|
220
266
|
};
|
|
221
267
|
|
|
222
268
|
|
|
223
269
|
export type RouteData_RouteDataSnapshot = RouteData_RouteDataSnapshot$instance;
|
|
224
270
|
|
|
225
271
|
export interface RouteValueDictionary_Enumerator$instance {
|
|
226
|
-
|
|
272
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RouteValueDictionary_Enumerator: never;
|
|
273
|
+
|
|
274
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
275
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
276
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
277
|
+
|
|
278
|
+
Current: KeyValuePair_2<System_Internal.String, unknown>;
|
|
227
279
|
Dispose(): void;
|
|
228
280
|
MoveNext(): boolean;
|
|
229
281
|
Reset(): void;
|
|
@@ -238,23 +290,31 @@ export const RouteValueDictionary_Enumerator: {
|
|
|
238
290
|
export type RouteValueDictionary_Enumerator = RouteValueDictionary_Enumerator$instance;
|
|
239
291
|
|
|
240
292
|
export interface CompositeEndpointDataSource$instance extends EndpointDataSource {
|
|
241
|
-
readonly
|
|
242
|
-
|
|
293
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_CompositeEndpointDataSource: never;
|
|
294
|
+
|
|
295
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
296
|
+
|
|
297
|
+
readonly DataSources: IEnumerable_1<EndpointDataSource>;
|
|
298
|
+
readonly Endpoints: IReadOnlyList_1<Endpoint>;
|
|
243
299
|
Dispose(): void;
|
|
244
300
|
GetChangeToken(): IChangeToken;
|
|
245
|
-
GetGroupedEndpoints(context: RouteGroupContext):
|
|
246
|
-
GetGroupedEndpoints(context: RouteGroupContext):
|
|
301
|
+
GetGroupedEndpoints(context: RouteGroupContext): IReadOnlyList_1<Endpoint>;
|
|
302
|
+
GetGroupedEndpoints(context: RouteGroupContext): IReadOnlyList_1<Endpoint>;
|
|
247
303
|
}
|
|
248
304
|
|
|
249
305
|
|
|
250
306
|
export const CompositeEndpointDataSource: {
|
|
251
|
-
new(endpointDataSources:
|
|
307
|
+
new(endpointDataSources: IEnumerable_1<EndpointDataSource>): CompositeEndpointDataSource;
|
|
252
308
|
};
|
|
253
309
|
|
|
254
310
|
|
|
255
311
|
export type CompositeEndpointDataSource = CompositeEndpointDataSource$instance;
|
|
256
312
|
|
|
257
313
|
export interface ContentEncodingMetadata$instance {
|
|
314
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_ContentEncodingMetadata: never;
|
|
315
|
+
|
|
316
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_INegotiateMetadata: never;
|
|
317
|
+
|
|
258
318
|
readonly Quality: double;
|
|
259
319
|
readonly Value: string;
|
|
260
320
|
}
|
|
@@ -267,14 +327,18 @@ export const ContentEncodingMetadata: {
|
|
|
267
327
|
|
|
268
328
|
export type ContentEncodingMetadata = ContentEncodingMetadata$instance;
|
|
269
329
|
|
|
270
|
-
export interface DataTokensMetadata$instance {
|
|
271
|
-
readonly
|
|
330
|
+
export interface DataTokensMetadata$instance extends IDataTokensMetadata$instance {
|
|
331
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_DataTokensMetadata: never;
|
|
332
|
+
|
|
333
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IDataTokensMetadata: never;
|
|
334
|
+
|
|
335
|
+
readonly DataTokens: IReadOnlyDictionary_2<System_Internal.String, unknown | undefined>;
|
|
272
336
|
ToString(): string;
|
|
273
337
|
}
|
|
274
338
|
|
|
275
339
|
|
|
276
340
|
export const DataTokensMetadata: {
|
|
277
|
-
new(dataTokens:
|
|
341
|
+
new(dataTokens: IReadOnlyDictionary_2<System_Internal.String, unknown>): DataTokensMetadata;
|
|
278
342
|
};
|
|
279
343
|
|
|
280
344
|
|
|
@@ -282,32 +346,36 @@ export interface __DataTokensMetadata$views {
|
|
|
282
346
|
As_IDataTokensMetadata(): IDataTokensMetadata$instance;
|
|
283
347
|
}
|
|
284
348
|
|
|
285
|
-
export interface DataTokensMetadata$instance extends IDataTokensMetadata$instance {}
|
|
286
|
-
|
|
287
349
|
export type DataTokensMetadata = DataTokensMetadata$instance & __DataTokensMetadata$views;
|
|
288
350
|
|
|
289
351
|
|
|
290
352
|
export interface DefaultEndpointDataSource$instance extends EndpointDataSource {
|
|
291
|
-
readonly
|
|
353
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_DefaultEndpointDataSource: never;
|
|
354
|
+
|
|
355
|
+
readonly Endpoints: IReadOnlyList_1<Endpoint>;
|
|
292
356
|
GetChangeToken(): IChangeToken;
|
|
293
357
|
}
|
|
294
358
|
|
|
295
359
|
|
|
296
360
|
export const DefaultEndpointDataSource: {
|
|
297
361
|
new(endpoints: Endpoint[]): DefaultEndpointDataSource;
|
|
298
|
-
new(endpoints:
|
|
362
|
+
new(endpoints: IEnumerable_1<Endpoint>): DefaultEndpointDataSource;
|
|
299
363
|
};
|
|
300
364
|
|
|
301
365
|
|
|
302
366
|
export type DefaultEndpointDataSource = DefaultEndpointDataSource$instance;
|
|
303
367
|
|
|
304
|
-
export interface DefaultInlineConstraintResolver$instance {
|
|
368
|
+
export interface DefaultInlineConstraintResolver$instance extends IInlineConstraintResolver$instance {
|
|
369
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_DefaultInlineConstraintResolver: never;
|
|
370
|
+
|
|
371
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IInlineConstraintResolver: never;
|
|
372
|
+
|
|
305
373
|
ResolveConstraint(inlineConstraint: string): IRouteConstraint | undefined;
|
|
306
374
|
}
|
|
307
375
|
|
|
308
376
|
|
|
309
377
|
export const DefaultInlineConstraintResolver: {
|
|
310
|
-
new(routeOptions:
|
|
378
|
+
new(routeOptions: IOptions_1<RouteOptions>, serviceProvider: IServiceProvider): DefaultInlineConstraintResolver;
|
|
311
379
|
};
|
|
312
380
|
|
|
313
381
|
|
|
@@ -315,15 +383,15 @@ export interface __DefaultInlineConstraintResolver$views {
|
|
|
315
383
|
As_IInlineConstraintResolver(): IInlineConstraintResolver$instance;
|
|
316
384
|
}
|
|
317
385
|
|
|
318
|
-
export interface DefaultInlineConstraintResolver$instance extends IInlineConstraintResolver$instance {}
|
|
319
|
-
|
|
320
386
|
export type DefaultInlineConstraintResolver = DefaultInlineConstraintResolver$instance & __DefaultInlineConstraintResolver$views;
|
|
321
387
|
|
|
322
388
|
|
|
323
389
|
export interface EndpointDataSource$instance {
|
|
324
|
-
readonly
|
|
390
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_EndpointDataSource: never;
|
|
391
|
+
|
|
392
|
+
readonly Endpoints: IReadOnlyList_1<Endpoint>;
|
|
325
393
|
GetChangeToken(): IChangeToken;
|
|
326
|
-
GetGroupedEndpoints(context: RouteGroupContext):
|
|
394
|
+
GetGroupedEndpoints(context: RouteGroupContext): IReadOnlyList_1<Endpoint>;
|
|
327
395
|
}
|
|
328
396
|
|
|
329
397
|
|
|
@@ -333,7 +401,11 @@ export const EndpointDataSource: (abstract new() => EndpointDataSource) & {
|
|
|
333
401
|
|
|
334
402
|
export type EndpointDataSource = EndpointDataSource$instance;
|
|
335
403
|
|
|
336
|
-
export interface EndpointGroupNameAttribute$instance extends Attribute {
|
|
404
|
+
export interface EndpointGroupNameAttribute$instance extends Attribute, IEndpointGroupNameMetadata$instance {
|
|
405
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_EndpointGroupNameAttribute: never;
|
|
406
|
+
|
|
407
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IEndpointGroupNameMetadata: never;
|
|
408
|
+
|
|
337
409
|
readonly EndpointGroupName: string;
|
|
338
410
|
}
|
|
339
411
|
|
|
@@ -347,12 +419,14 @@ export interface __EndpointGroupNameAttribute$views {
|
|
|
347
419
|
As_IEndpointGroupNameMetadata(): IEndpointGroupNameMetadata$instance;
|
|
348
420
|
}
|
|
349
421
|
|
|
350
|
-
export interface EndpointGroupNameAttribute$instance extends IEndpointGroupNameMetadata$instance {}
|
|
351
|
-
|
|
352
422
|
export type EndpointGroupNameAttribute = EndpointGroupNameAttribute$instance & __EndpointGroupNameAttribute$views;
|
|
353
423
|
|
|
354
424
|
|
|
355
|
-
export interface EndpointNameAttribute$instance extends Attribute {
|
|
425
|
+
export interface EndpointNameAttribute$instance extends Attribute, IEndpointNameMetadata$instance {
|
|
426
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_EndpointNameAttribute: never;
|
|
427
|
+
|
|
428
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IEndpointNameMetadata: never;
|
|
429
|
+
|
|
356
430
|
readonly EndpointName: string;
|
|
357
431
|
}
|
|
358
432
|
|
|
@@ -366,12 +440,14 @@ export interface __EndpointNameAttribute$views {
|
|
|
366
440
|
As_IEndpointNameMetadata(): IEndpointNameMetadata$instance;
|
|
367
441
|
}
|
|
368
442
|
|
|
369
|
-
export interface EndpointNameAttribute$instance extends IEndpointNameMetadata$instance {}
|
|
370
|
-
|
|
371
443
|
export type EndpointNameAttribute = EndpointNameAttribute$instance & __EndpointNameAttribute$views;
|
|
372
444
|
|
|
373
445
|
|
|
374
|
-
export interface EndpointNameMetadata$instance {
|
|
446
|
+
export interface EndpointNameMetadata$instance extends IEndpointNameMetadata$instance {
|
|
447
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_EndpointNameMetadata: never;
|
|
448
|
+
|
|
449
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IEndpointNameMetadata: never;
|
|
450
|
+
|
|
375
451
|
readonly EndpointName: string;
|
|
376
452
|
ToString(): string;
|
|
377
453
|
}
|
|
@@ -386,12 +462,14 @@ export interface __EndpointNameMetadata$views {
|
|
|
386
462
|
As_IEndpointNameMetadata(): IEndpointNameMetadata$instance;
|
|
387
463
|
}
|
|
388
464
|
|
|
389
|
-
export interface EndpointNameMetadata$instance extends IEndpointNameMetadata$instance {}
|
|
390
|
-
|
|
391
465
|
export type EndpointNameMetadata = EndpointNameMetadata$instance & __EndpointNameMetadata$views;
|
|
392
466
|
|
|
393
467
|
|
|
394
|
-
export interface ExcludeFromDescriptionAttribute$instance extends Attribute {
|
|
468
|
+
export interface ExcludeFromDescriptionAttribute$instance extends Attribute, IExcludeFromDescriptionMetadata$instance {
|
|
469
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_ExcludeFromDescriptionAttribute: never;
|
|
470
|
+
|
|
471
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IExcludeFromDescriptionMetadata: never;
|
|
472
|
+
|
|
395
473
|
readonly ExcludeFromDescription: boolean;
|
|
396
474
|
ToString(): string;
|
|
397
475
|
}
|
|
@@ -406,13 +484,15 @@ export interface __ExcludeFromDescriptionAttribute$views {
|
|
|
406
484
|
As_IExcludeFromDescriptionMetadata(): IExcludeFromDescriptionMetadata$instance;
|
|
407
485
|
}
|
|
408
486
|
|
|
409
|
-
export interface ExcludeFromDescriptionAttribute$instance extends IExcludeFromDescriptionMetadata$instance {}
|
|
410
|
-
|
|
411
487
|
export type ExcludeFromDescriptionAttribute = ExcludeFromDescriptionAttribute$instance & __ExcludeFromDescriptionAttribute$views;
|
|
412
488
|
|
|
413
489
|
|
|
414
|
-
export interface HostAttribute$instance extends Attribute {
|
|
415
|
-
readonly
|
|
490
|
+
export interface HostAttribute$instance extends Attribute, IHostMetadata$instance {
|
|
491
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_HostAttribute: never;
|
|
492
|
+
|
|
493
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IHostMetadata: never;
|
|
494
|
+
|
|
495
|
+
readonly Hosts: IReadOnlyList_1<System_Internal.String>;
|
|
416
496
|
ToString(): string;
|
|
417
497
|
}
|
|
418
498
|
|
|
@@ -427,21 +507,23 @@ export interface __HostAttribute$views {
|
|
|
427
507
|
As_IHostMetadata(): IHostMetadata$instance;
|
|
428
508
|
}
|
|
429
509
|
|
|
430
|
-
export interface HostAttribute$instance extends IHostMetadata$instance {}
|
|
431
|
-
|
|
432
510
|
export type HostAttribute = HostAttribute$instance & __HostAttribute$views;
|
|
433
511
|
|
|
434
512
|
|
|
435
|
-
export interface HttpMethodMetadata$instance {
|
|
513
|
+
export interface HttpMethodMetadata$instance extends IHttpMethodMetadata$instance {
|
|
514
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_HttpMethodMetadata: never;
|
|
515
|
+
|
|
516
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IHttpMethodMetadata: never;
|
|
517
|
+
|
|
436
518
|
AcceptCorsPreflight: boolean;
|
|
437
|
-
readonly HttpMethods:
|
|
519
|
+
readonly HttpMethods: IReadOnlyList_1<System_Internal.String>;
|
|
438
520
|
ToString(): string;
|
|
439
521
|
}
|
|
440
522
|
|
|
441
523
|
|
|
442
524
|
export const HttpMethodMetadata: {
|
|
443
|
-
new(httpMethods:
|
|
444
|
-
new(httpMethods:
|
|
525
|
+
new(httpMethods: IEnumerable_1<System_Internal.String>): HttpMethodMetadata;
|
|
526
|
+
new(httpMethods: IEnumerable_1<System_Internal.String>, acceptCorsPreflight: boolean): HttpMethodMetadata;
|
|
445
527
|
};
|
|
446
528
|
|
|
447
529
|
|
|
@@ -449,15 +531,15 @@ export interface __HttpMethodMetadata$views {
|
|
|
449
531
|
As_IHttpMethodMetadata(): IHttpMethodMetadata$instance;
|
|
450
532
|
}
|
|
451
533
|
|
|
452
|
-
export interface HttpMethodMetadata$instance extends IHttpMethodMetadata$instance {}
|
|
453
|
-
|
|
454
534
|
export type HttpMethodMetadata = HttpMethodMetadata$instance & __HttpMethodMetadata$views;
|
|
455
535
|
|
|
456
536
|
|
|
457
537
|
export interface LinkGenerator$instance {
|
|
458
|
-
|
|
538
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_LinkGenerator: never;
|
|
539
|
+
|
|
540
|
+
GetPathByAddress<TAddress>(httpContext: HttpContext, address: TAddress, values: RouteValueDictionary, ambientValues?: RouteValueDictionary, pathBase?: Nullable_1<PathString>, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
459
541
|
GetPathByAddress<TAddress>(address: TAddress, values: RouteValueDictionary, pathBase?: PathString, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
460
|
-
GetUriByAddress<TAddress>(httpContext: HttpContext, address: TAddress, values: RouteValueDictionary, ambientValues?: RouteValueDictionary, scheme?: string, host?:
|
|
542
|
+
GetUriByAddress<TAddress>(httpContext: HttpContext, address: TAddress, values: RouteValueDictionary, ambientValues?: RouteValueDictionary, scheme?: string, host?: Nullable_1<HostString>, pathBase?: Nullable_1<PathString>, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
461
543
|
GetUriByAddress<TAddress>(address: TAddress, values: RouteValueDictionary, scheme: string, host: HostString, pathBase?: PathString, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
462
544
|
}
|
|
463
545
|
|
|
@@ -469,9 +551,11 @@ export const LinkGenerator: (abstract new() => LinkGenerator) & {
|
|
|
469
551
|
export type LinkGenerator = LinkGenerator$instance;
|
|
470
552
|
|
|
471
553
|
export interface LinkOptions$instance {
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
554
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_LinkOptions: never;
|
|
555
|
+
|
|
556
|
+
AppendTrailingSlash: Nullable_1<System_Internal.Boolean>;
|
|
557
|
+
LowercaseQueryStrings: Nullable_1<System_Internal.Boolean>;
|
|
558
|
+
LowercaseUrls: Nullable_1<System_Internal.Boolean>;
|
|
475
559
|
}
|
|
476
560
|
|
|
477
561
|
|
|
@@ -483,6 +567,8 @@ export const LinkOptions: {
|
|
|
483
567
|
export type LinkOptions = LinkOptions$instance;
|
|
484
568
|
|
|
485
569
|
export interface LinkParser$instance {
|
|
570
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_LinkParser: never;
|
|
571
|
+
|
|
486
572
|
ParsePathByAddress<TAddress>(address: TAddress, path: PathString): RouteValueDictionary | undefined;
|
|
487
573
|
}
|
|
488
574
|
|
|
@@ -494,18 +580,22 @@ export const LinkParser: (abstract new() => LinkParser) & {
|
|
|
494
580
|
export type LinkParser = LinkParser$instance;
|
|
495
581
|
|
|
496
582
|
export interface MatcherPolicy$instance {
|
|
583
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_MatcherPolicy: never;
|
|
584
|
+
|
|
497
585
|
readonly Order: int;
|
|
498
586
|
}
|
|
499
587
|
|
|
500
588
|
|
|
501
589
|
export const MatcherPolicy: (abstract new() => MatcherPolicy) & {
|
|
502
|
-
ContainsDynamicEndpoints(endpoints:
|
|
590
|
+
ContainsDynamicEndpoints(endpoints: IReadOnlyList_1<Endpoint>): boolean;
|
|
503
591
|
};
|
|
504
592
|
|
|
505
593
|
|
|
506
594
|
export type MatcherPolicy = MatcherPolicy$instance;
|
|
507
595
|
|
|
508
596
|
export interface ParameterPolicyFactory$instance {
|
|
597
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_ParameterPolicyFactory: never;
|
|
598
|
+
|
|
509
599
|
Create(parameter: RoutePatternParameterPart, inlineText: string): IParameterPolicy;
|
|
510
600
|
Create(parameter: RoutePatternParameterPart, parameterPolicy: IParameterPolicy): IParameterPolicy;
|
|
511
601
|
Create(parameter: RoutePatternParameterPart, reference: RoutePatternParameterPolicyReference): IParameterPolicy;
|
|
@@ -519,6 +609,11 @@ export const ParameterPolicyFactory: (abstract new() => ParameterPolicyFactory)
|
|
|
519
609
|
export type ParameterPolicyFactory = ParameterPolicyFactory$instance;
|
|
520
610
|
|
|
521
611
|
export interface Route$instance extends RouteBase$instance {
|
|
612
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Route: never;
|
|
613
|
+
|
|
614
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_INamedRouter: never;
|
|
615
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouter: never;
|
|
616
|
+
|
|
522
617
|
readonly RouteTemplate: string | undefined;
|
|
523
618
|
GetVirtualPath(context: VirtualPathContext): VirtualPathData | undefined;
|
|
524
619
|
OnRouteMatched(context: RouteContext): Task;
|
|
@@ -529,8 +624,8 @@ export interface Route$instance extends RouteBase$instance {
|
|
|
529
624
|
|
|
530
625
|
export const Route: {
|
|
531
626
|
new(target: IRouter, routeTemplate: string, inlineConstraintResolver: IInlineConstraintResolver): Route;
|
|
532
|
-
new(target: IRouter, routeTemplate: string, defaults: RouteValueDictionary, constraints:
|
|
533
|
-
new(target: IRouter, routeName: string, routeTemplate: string, defaults: RouteValueDictionary, constraints:
|
|
627
|
+
new(target: IRouter, routeTemplate: string, defaults: RouteValueDictionary, constraints: IDictionary_2<System_Internal.String, unknown>, dataTokens: RouteValueDictionary, inlineConstraintResolver: IInlineConstraintResolver): Route;
|
|
628
|
+
new(target: IRouter, routeName: string, routeTemplate: string, defaults: RouteValueDictionary, constraints: IDictionary_2<System_Internal.String, unknown>, dataTokens: RouteValueDictionary, inlineConstraintResolver: IInlineConstraintResolver): Route;
|
|
534
629
|
};
|
|
535
630
|
|
|
536
631
|
|
|
@@ -543,8 +638,13 @@ export type Route = Route$instance & __Route$views;
|
|
|
543
638
|
|
|
544
639
|
|
|
545
640
|
export interface RouteBase$instance {
|
|
641
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RouteBase: never;
|
|
642
|
+
|
|
643
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_INamedRouter: never;
|
|
644
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouter: never;
|
|
645
|
+
|
|
546
646
|
ConstraintResolver: IInlineConstraintResolver;
|
|
547
|
-
Constraints:
|
|
647
|
+
Constraints: IDictionary_2<System_Internal.String, IRouteConstraint>;
|
|
548
648
|
DataTokens: RouteValueDictionary;
|
|
549
649
|
Defaults: RouteValueDictionary;
|
|
550
650
|
get Name(): string | undefined;
|
|
@@ -558,8 +658,8 @@ export interface RouteBase$instance {
|
|
|
558
658
|
}
|
|
559
659
|
|
|
560
660
|
|
|
561
|
-
export const RouteBase: (abstract new(template: string, name: string, constraintResolver: IInlineConstraintResolver, defaults: RouteValueDictionary, constraints:
|
|
562
|
-
GetConstraints(inlineConstraintResolver: IInlineConstraintResolver, parsedTemplate: RouteTemplate, constraints:
|
|
661
|
+
export const RouteBase: (abstract new(template: string, name: string, constraintResolver: IInlineConstraintResolver, defaults: RouteValueDictionary, constraints: IDictionary_2<System_Internal.String, unknown>, dataTokens: RouteValueDictionary) => RouteBase) & {
|
|
662
|
+
GetConstraints(inlineConstraintResolver: IInlineConstraintResolver, parsedTemplate: RouteTemplate, constraints: IDictionary_2<System_Internal.String, unknown>): IDictionary_2<System_Internal.String, IRouteConstraint>;
|
|
563
663
|
GetDefaults(parsedTemplate: RouteTemplate, defaults: RouteValueDictionary): RouteValueDictionary;
|
|
564
664
|
};
|
|
565
665
|
|
|
@@ -572,11 +672,15 @@ export interface __RouteBase$views {
|
|
|
572
672
|
export type RouteBase = RouteBase$instance & __RouteBase$views;
|
|
573
673
|
|
|
574
674
|
|
|
575
|
-
export interface RouteBuilder$instance {
|
|
675
|
+
export interface RouteBuilder$instance extends IRouteBuilder$instance {
|
|
676
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RouteBuilder: never;
|
|
677
|
+
|
|
678
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteBuilder: never;
|
|
679
|
+
|
|
576
680
|
readonly ApplicationBuilder: IApplicationBuilder;
|
|
577
681
|
get DefaultHandler(): IRouter | undefined;
|
|
578
682
|
set DefaultHandler(value: IRouter | undefined);
|
|
579
|
-
readonly Routes:
|
|
683
|
+
readonly Routes: IList_1<IRouter>;
|
|
580
684
|
readonly ServiceProvider: IServiceProvider;
|
|
581
685
|
Build(): IRouter;
|
|
582
686
|
}
|
|
@@ -592,12 +696,15 @@ export interface __RouteBuilder$views {
|
|
|
592
696
|
As_IRouteBuilder(): IRouteBuilder$instance;
|
|
593
697
|
}
|
|
594
698
|
|
|
595
|
-
export interface RouteBuilder$instance extends IRouteBuilder$instance {}
|
|
596
|
-
|
|
597
699
|
export type RouteBuilder = RouteBuilder$instance & __RouteBuilder$views;
|
|
598
700
|
|
|
599
701
|
|
|
600
702
|
export interface RouteCollection$instance {
|
|
703
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RouteCollection: never;
|
|
704
|
+
|
|
705
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteCollection: never;
|
|
706
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouter: never;
|
|
707
|
+
|
|
601
708
|
readonly Count: int;
|
|
602
709
|
readonly [index: number]: IRouter;
|
|
603
710
|
Add(router: IRouter): void;
|
|
@@ -620,9 +727,11 @@ export type RouteCollection = RouteCollection$instance & __RouteCollection$views
|
|
|
620
727
|
|
|
621
728
|
|
|
622
729
|
export interface RouteConstraintBuilder$instance {
|
|
730
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RouteConstraintBuilder: never;
|
|
731
|
+
|
|
623
732
|
AddConstraint(key: string, value: unknown): void;
|
|
624
733
|
AddResolvedConstraint(key: string, constraintText: string): void;
|
|
625
|
-
Build():
|
|
734
|
+
Build(): IDictionary_2<System_Internal.String, IRouteConstraint>;
|
|
626
735
|
SetOptional(key: string): void;
|
|
627
736
|
}
|
|
628
737
|
|
|
@@ -635,6 +744,8 @@ export const RouteConstraintBuilder: {
|
|
|
635
744
|
export type RouteConstraintBuilder = RouteConstraintBuilder$instance;
|
|
636
745
|
|
|
637
746
|
export interface RouteContext$instance {
|
|
747
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RouteContext: never;
|
|
748
|
+
|
|
638
749
|
get Handler(): RequestDelegate | undefined;
|
|
639
750
|
set Handler(value: RequestDelegate | undefined);
|
|
640
751
|
readonly HttpContext: HttpContext;
|
|
@@ -650,6 +761,10 @@ export const RouteContext: {
|
|
|
650
761
|
export type RouteContext = RouteContext$instance;
|
|
651
762
|
|
|
652
763
|
export interface RouteCreationException$instance extends Exception {
|
|
764
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RouteCreationException: never;
|
|
765
|
+
|
|
766
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
767
|
+
|
|
653
768
|
}
|
|
654
769
|
|
|
655
770
|
|
|
@@ -662,8 +777,10 @@ export const RouteCreationException: {
|
|
|
662
777
|
export type RouteCreationException = RouteCreationException$instance;
|
|
663
778
|
|
|
664
779
|
export interface RouteData$instance {
|
|
780
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RouteData: never;
|
|
781
|
+
|
|
665
782
|
readonly DataTokens: RouteValueDictionary;
|
|
666
|
-
readonly Routers:
|
|
783
|
+
readonly Routers: IList_1<IRouter>;
|
|
667
784
|
readonly Values: RouteValueDictionary;
|
|
668
785
|
PushState(router: IRouter, values: RouteValueDictionary, dataTokens: RouteValueDictionary): RouteData_RouteDataSnapshot;
|
|
669
786
|
}
|
|
@@ -679,6 +796,8 @@ export const RouteData: {
|
|
|
679
796
|
export type RouteData = RouteData$instance;
|
|
680
797
|
|
|
681
798
|
export interface RouteEndpoint$instance extends Endpoint {
|
|
799
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RouteEndpoint: never;
|
|
800
|
+
|
|
682
801
|
readonly Order: int;
|
|
683
802
|
readonly RoutePattern: RoutePattern;
|
|
684
803
|
}
|
|
@@ -692,6 +811,8 @@ export const RouteEndpoint: {
|
|
|
692
811
|
export type RouteEndpoint = RouteEndpoint$instance;
|
|
693
812
|
|
|
694
813
|
export interface RouteEndpointBuilder$instance extends EndpointBuilder {
|
|
814
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RouteEndpointBuilder: never;
|
|
815
|
+
|
|
695
816
|
Order: int;
|
|
696
817
|
RoutePattern: RoutePattern;
|
|
697
818
|
Build(): Endpoint;
|
|
@@ -705,7 +826,12 @@ export const RouteEndpointBuilder: {
|
|
|
705
826
|
|
|
706
827
|
export type RouteEndpointBuilder = RouteEndpointBuilder$instance;
|
|
707
828
|
|
|
708
|
-
export interface RouteGroupBuilder$instance {
|
|
829
|
+
export interface RouteGroupBuilder$instance extends Microsoft_AspNetCore_Builder_Internal.IEndpointConventionBuilder$instance, IEndpointRouteBuilder$instance {
|
|
830
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RouteGroupBuilder: never;
|
|
831
|
+
|
|
832
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Builder_IEndpointConventionBuilder: never;
|
|
833
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IEndpointRouteBuilder: never;
|
|
834
|
+
|
|
709
835
|
}
|
|
710
836
|
|
|
711
837
|
|
|
@@ -718,15 +844,15 @@ export interface __RouteGroupBuilder$views {
|
|
|
718
844
|
As_IEndpointRouteBuilder(): IEndpointRouteBuilder$instance;
|
|
719
845
|
}
|
|
720
846
|
|
|
721
|
-
export interface RouteGroupBuilder$instance extends Microsoft_AspNetCore_Builder_Internal.IEndpointConventionBuilder$instance, IEndpointRouteBuilder$instance {}
|
|
722
|
-
|
|
723
847
|
export type RouteGroupBuilder = RouteGroupBuilder$instance & __RouteGroupBuilder$views;
|
|
724
848
|
|
|
725
849
|
|
|
726
850
|
export interface RouteGroupContext$instance {
|
|
851
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RouteGroupContext: never;
|
|
852
|
+
|
|
727
853
|
ApplicationServices: IServiceProvider;
|
|
728
|
-
Conventions:
|
|
729
|
-
FinallyConventions:
|
|
854
|
+
Conventions: IReadOnlyList_1<Action_1<EndpointBuilder>>;
|
|
855
|
+
FinallyConventions: IReadOnlyList_1<Action_1<EndpointBuilder>>;
|
|
730
856
|
Prefix: RoutePattern;
|
|
731
857
|
}
|
|
732
858
|
|
|
@@ -738,7 +864,12 @@ export const RouteGroupContext: {
|
|
|
738
864
|
|
|
739
865
|
export type RouteGroupContext = RouteGroupContext$instance;
|
|
740
866
|
|
|
741
|
-
export interface RouteHandler$instance {
|
|
867
|
+
export interface RouteHandler$instance extends IRouteHandler$instance, IRouter$instance {
|
|
868
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RouteHandler: never;
|
|
869
|
+
|
|
870
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteHandler: never;
|
|
871
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouter: never;
|
|
872
|
+
|
|
742
873
|
GetRequestHandler(httpContext: HttpContext, routeData: RouteData): RequestDelegate;
|
|
743
874
|
GetVirtualPath(context: VirtualPathContext): VirtualPathData | undefined;
|
|
744
875
|
RouteAsync(context: RouteContext): Task;
|
|
@@ -755,12 +886,12 @@ export interface __RouteHandler$views {
|
|
|
755
886
|
As_IRouter(): IRouter$instance;
|
|
756
887
|
}
|
|
757
888
|
|
|
758
|
-
export interface RouteHandler$instance extends IRouteHandler$instance, IRouter$instance {}
|
|
759
|
-
|
|
760
889
|
export type RouteHandler = RouteHandler$instance & __RouteHandler$views;
|
|
761
890
|
|
|
762
891
|
|
|
763
892
|
export interface RouteHandlerOptions$instance {
|
|
893
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RouteHandlerOptions: never;
|
|
894
|
+
|
|
764
895
|
ThrowOnBadRequest: boolean;
|
|
765
896
|
}
|
|
766
897
|
|
|
@@ -772,7 +903,11 @@ export const RouteHandlerOptions: {
|
|
|
772
903
|
|
|
773
904
|
export type RouteHandlerOptions = RouteHandlerOptions$instance;
|
|
774
905
|
|
|
775
|
-
export interface RouteNameMetadata$instance {
|
|
906
|
+
export interface RouteNameMetadata$instance extends IRouteNameMetadata$instance {
|
|
907
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RouteNameMetadata: never;
|
|
908
|
+
|
|
909
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteNameMetadata: never;
|
|
910
|
+
|
|
776
911
|
readonly RouteName: string | undefined;
|
|
777
912
|
ToString(): string;
|
|
778
913
|
}
|
|
@@ -787,14 +922,14 @@ export interface __RouteNameMetadata$views {
|
|
|
787
922
|
As_IRouteNameMetadata(): IRouteNameMetadata$instance;
|
|
788
923
|
}
|
|
789
924
|
|
|
790
|
-
export interface RouteNameMetadata$instance extends IRouteNameMetadata$instance {}
|
|
791
|
-
|
|
792
925
|
export type RouteNameMetadata = RouteNameMetadata$instance & __RouteNameMetadata$views;
|
|
793
926
|
|
|
794
927
|
|
|
795
928
|
export interface RouteOptions$instance {
|
|
929
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RouteOptions: never;
|
|
930
|
+
|
|
796
931
|
AppendTrailingSlash: boolean;
|
|
797
|
-
ConstraintMap:
|
|
932
|
+
ConstraintMap: IDictionary_2<System_Internal.String, Type>;
|
|
798
933
|
LowercaseQueryStrings: boolean;
|
|
799
934
|
LowercaseUrls: boolean;
|
|
800
935
|
SuppressCheckForUnhandledSecurityMetadata: boolean;
|
|
@@ -811,11 +946,20 @@ export const RouteOptions: {
|
|
|
811
946
|
export type RouteOptions = RouteOptions$instance;
|
|
812
947
|
|
|
813
948
|
export interface RouteValueDictionary$instance {
|
|
814
|
-
readonly
|
|
949
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RouteValueDictionary: never;
|
|
950
|
+
|
|
951
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
952
|
+
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
953
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
954
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
955
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyDictionary_2: never;
|
|
956
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
957
|
+
|
|
958
|
+
readonly Comparer: IEqualityComparer_1<System_Internal.String>;
|
|
815
959
|
readonly Count: int;
|
|
816
960
|
[key: string]: unknown | undefined;
|
|
817
|
-
readonly Keys:
|
|
818
|
-
readonly Values:
|
|
961
|
+
readonly Keys: ICollection_1<System_Internal.String>;
|
|
962
|
+
readonly Values: ICollection_1<unknown | undefined>;
|
|
819
963
|
Add(key: string, value: unknown): void;
|
|
820
964
|
Clear(): void;
|
|
821
965
|
ContainsKey(key: string): boolean;
|
|
@@ -830,16 +974,20 @@ export interface RouteValueDictionary$instance {
|
|
|
830
974
|
export const RouteValueDictionary: {
|
|
831
975
|
new(): RouteValueDictionary;
|
|
832
976
|
new(values: unknown): RouteValueDictionary;
|
|
833
|
-
new(values:
|
|
834
|
-
new(values:
|
|
977
|
+
new(values: IEnumerable_1<KeyValuePair_2<System_Internal.String, unknown>>): RouteValueDictionary;
|
|
978
|
+
new(values: IEnumerable_1<KeyValuePair_2<System_Internal.String, System_Internal.String>>): RouteValueDictionary;
|
|
835
979
|
new(dictionary: RouteValueDictionary): RouteValueDictionary;
|
|
836
|
-
FromArray(items:
|
|
980
|
+
FromArray(items: KeyValuePair_2<System_Internal.String, unknown>[]): RouteValueDictionary;
|
|
837
981
|
};
|
|
838
982
|
|
|
839
983
|
|
|
840
984
|
export type RouteValueDictionary = RouteValueDictionary$instance;
|
|
841
985
|
|
|
842
986
|
export interface RouteValueEqualityComparer$instance {
|
|
987
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RouteValueEqualityComparer: never;
|
|
988
|
+
|
|
989
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
990
|
+
|
|
843
991
|
Equals(x: unknown, y: unknown): boolean;
|
|
844
992
|
GetHashCode(obj: unknown): int;
|
|
845
993
|
}
|
|
@@ -854,6 +1002,8 @@ export const RouteValueEqualityComparer: {
|
|
|
854
1002
|
export type RouteValueEqualityComparer = RouteValueEqualityComparer$instance;
|
|
855
1003
|
|
|
856
1004
|
export interface RouteValuesAddress$instance {
|
|
1005
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RouteValuesAddress: never;
|
|
1006
|
+
|
|
857
1007
|
get AmbientValues(): RouteValueDictionary | undefined;
|
|
858
1008
|
set AmbientValues(value: RouteValueDictionary | undefined);
|
|
859
1009
|
ExplicitValues: RouteValueDictionary;
|
|
@@ -870,7 +1020,11 @@ export const RouteValuesAddress: {
|
|
|
870
1020
|
|
|
871
1021
|
export type RouteValuesAddress = RouteValuesAddress$instance;
|
|
872
1022
|
|
|
873
|
-
export interface RoutingFeature$instance {
|
|
1023
|
+
export interface RoutingFeature$instance extends IRoutingFeature$instance {
|
|
1024
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_RoutingFeature: never;
|
|
1025
|
+
|
|
1026
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRoutingFeature: never;
|
|
1027
|
+
|
|
874
1028
|
get RouteData(): RouteData | undefined;
|
|
875
1029
|
set RouteData(value: RouteData | undefined);
|
|
876
1030
|
}
|
|
@@ -885,12 +1039,14 @@ export interface __RoutingFeature$views {
|
|
|
885
1039
|
As_IRoutingFeature(): IRoutingFeature$instance;
|
|
886
1040
|
}
|
|
887
1041
|
|
|
888
|
-
export interface RoutingFeature$instance extends IRoutingFeature$instance {}
|
|
889
|
-
|
|
890
1042
|
export type RoutingFeature = RoutingFeature$instance & __RoutingFeature$views;
|
|
891
1043
|
|
|
892
1044
|
|
|
893
|
-
export interface SuppressLinkGenerationMetadata$instance {
|
|
1045
|
+
export interface SuppressLinkGenerationMetadata$instance extends ISuppressLinkGenerationMetadata$instance {
|
|
1046
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_SuppressLinkGenerationMetadata: never;
|
|
1047
|
+
|
|
1048
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_ISuppressLinkGenerationMetadata: never;
|
|
1049
|
+
|
|
894
1050
|
readonly SuppressLinkGeneration: boolean;
|
|
895
1051
|
ToString(): string;
|
|
896
1052
|
}
|
|
@@ -905,12 +1061,14 @@ export interface __SuppressLinkGenerationMetadata$views {
|
|
|
905
1061
|
As_ISuppressLinkGenerationMetadata(): ISuppressLinkGenerationMetadata$instance;
|
|
906
1062
|
}
|
|
907
1063
|
|
|
908
|
-
export interface SuppressLinkGenerationMetadata$instance extends ISuppressLinkGenerationMetadata$instance {}
|
|
909
|
-
|
|
910
1064
|
export type SuppressLinkGenerationMetadata = SuppressLinkGenerationMetadata$instance & __SuppressLinkGenerationMetadata$views;
|
|
911
1065
|
|
|
912
1066
|
|
|
913
|
-
export interface SuppressMatchingMetadata$instance {
|
|
1067
|
+
export interface SuppressMatchingMetadata$instance extends ISuppressMatchingMetadata$instance {
|
|
1068
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_SuppressMatchingMetadata: never;
|
|
1069
|
+
|
|
1070
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_ISuppressMatchingMetadata: never;
|
|
1071
|
+
|
|
914
1072
|
readonly SuppressMatching: boolean;
|
|
915
1073
|
ToString(): string;
|
|
916
1074
|
}
|
|
@@ -925,12 +1083,12 @@ export interface __SuppressMatchingMetadata$views {
|
|
|
925
1083
|
As_ISuppressMatchingMetadata(): ISuppressMatchingMetadata$instance;
|
|
926
1084
|
}
|
|
927
1085
|
|
|
928
|
-
export interface SuppressMatchingMetadata$instance extends ISuppressMatchingMetadata$instance {}
|
|
929
|
-
|
|
930
1086
|
export type SuppressMatchingMetadata = SuppressMatchingMetadata$instance & __SuppressMatchingMetadata$views;
|
|
931
1087
|
|
|
932
1088
|
|
|
933
1089
|
export interface VirtualPathContext$instance {
|
|
1090
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_VirtualPathContext: never;
|
|
1091
|
+
|
|
934
1092
|
readonly AmbientValues: RouteValueDictionary;
|
|
935
1093
|
readonly HttpContext: HttpContext;
|
|
936
1094
|
readonly RouteName: string | undefined;
|
|
@@ -947,6 +1105,8 @@ export const VirtualPathContext: {
|
|
|
947
1105
|
export type VirtualPathContext = VirtualPathContext$instance;
|
|
948
1106
|
|
|
949
1107
|
export interface VirtualPathData$instance {
|
|
1108
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_VirtualPathData: never;
|
|
1109
|
+
|
|
950
1110
|
readonly DataTokens: RouteValueDictionary;
|
|
951
1111
|
Router: IRouter;
|
|
952
1112
|
VirtualPath: string;
|
|
@@ -962,9 +1122,9 @@ export const VirtualPathData: {
|
|
|
962
1122
|
export type VirtualPathData = VirtualPathData$instance;
|
|
963
1123
|
|
|
964
1124
|
export abstract class ControllerLinkGeneratorExtensions$instance {
|
|
965
|
-
static GetPathByAction(generator: LinkGenerator, httpContext: HttpContext, action?: string, controller?: string, values?: unknown, pathBase?:
|
|
1125
|
+
static GetPathByAction(generator: LinkGenerator, httpContext: HttpContext, action?: string, controller?: string, values?: unknown, pathBase?: Nullable_1<PathString>, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
966
1126
|
static GetPathByAction(generator: LinkGenerator, action: string, controller: string, values?: unknown, pathBase?: PathString, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
967
|
-
static GetUriByAction(generator: LinkGenerator, httpContext: HttpContext, action?: string, controller?: string, values?: unknown, scheme?: string, host?:
|
|
1127
|
+
static GetUriByAction(generator: LinkGenerator, httpContext: HttpContext, action?: string, controller?: string, values?: unknown, scheme?: string, host?: Nullable_1<HostString>, pathBase?: Nullable_1<PathString>, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
968
1128
|
static GetUriByAction(generator: LinkGenerator, action: string, controller: string, values: unknown, scheme: string, host: HostString, pathBase?: PathString, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
969
1129
|
}
|
|
970
1130
|
|
|
@@ -986,12 +1146,12 @@ export abstract class InlineRouteParameterParser$instance {
|
|
|
986
1146
|
export type InlineRouteParameterParser = InlineRouteParameterParser$instance;
|
|
987
1147
|
|
|
988
1148
|
export abstract class LinkGeneratorEndpointNameAddressExtensions$instance {
|
|
989
|
-
static GetPathByName(generator: LinkGenerator, httpContext: HttpContext, endpointName: string, values?: RouteValueDictionary, pathBase?:
|
|
990
|
-
static GetPathByName(generator: LinkGenerator, httpContext: HttpContext, endpointName: string, values: unknown, pathBase?:
|
|
1149
|
+
static GetPathByName(generator: LinkGenerator, httpContext: HttpContext, endpointName: string, values?: RouteValueDictionary, pathBase?: Nullable_1<PathString>, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
1150
|
+
static GetPathByName(generator: LinkGenerator, httpContext: HttpContext, endpointName: string, values: unknown, pathBase?: Nullable_1<PathString>, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
991
1151
|
static GetPathByName(generator: LinkGenerator, endpointName: string, values?: RouteValueDictionary, pathBase?: PathString, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
992
1152
|
static GetPathByName(generator: LinkGenerator, endpointName: string, values: unknown, pathBase?: PathString, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
993
|
-
static GetUriByName(generator: LinkGenerator, httpContext: HttpContext, endpointName: string, values?: RouteValueDictionary, scheme?: string, host?:
|
|
994
|
-
static GetUriByName(generator: LinkGenerator, httpContext: HttpContext, endpointName: string, values: unknown, scheme?: string, host?:
|
|
1153
|
+
static GetUriByName(generator: LinkGenerator, httpContext: HttpContext, endpointName: string, values?: RouteValueDictionary, scheme?: string, host?: Nullable_1<HostString>, pathBase?: Nullable_1<PathString>, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
1154
|
+
static GetUriByName(generator: LinkGenerator, httpContext: HttpContext, endpointName: string, values: unknown, scheme?: string, host?: Nullable_1<HostString>, pathBase?: Nullable_1<PathString>, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
995
1155
|
static GetUriByName(generator: LinkGenerator, endpointName: string, values: RouteValueDictionary, scheme: string, host: HostString, pathBase?: PathString, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
996
1156
|
static GetUriByName(generator: LinkGenerator, endpointName: string, values: unknown, scheme: string, host: HostString, pathBase?: PathString, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
997
1157
|
}
|
|
@@ -1000,12 +1160,12 @@ export abstract class LinkGeneratorEndpointNameAddressExtensions$instance {
|
|
|
1000
1160
|
export type LinkGeneratorEndpointNameAddressExtensions = LinkGeneratorEndpointNameAddressExtensions$instance;
|
|
1001
1161
|
|
|
1002
1162
|
export abstract class LinkGeneratorRouteValuesAddressExtensions$instance {
|
|
1003
|
-
static GetPathByRouteValues(generator: LinkGenerator, httpContext: HttpContext, routeName: string, values?: RouteValueDictionary, pathBase?:
|
|
1004
|
-
static GetPathByRouteValues(generator: LinkGenerator, httpContext: HttpContext, routeName: string, values: unknown, pathBase?:
|
|
1163
|
+
static GetPathByRouteValues(generator: LinkGenerator, httpContext: HttpContext, routeName: string, values?: RouteValueDictionary, pathBase?: Nullable_1<PathString>, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
1164
|
+
static GetPathByRouteValues(generator: LinkGenerator, httpContext: HttpContext, routeName: string, values: unknown, pathBase?: Nullable_1<PathString>, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
1005
1165
|
static GetPathByRouteValues(generator: LinkGenerator, routeName: string, values?: RouteValueDictionary, pathBase?: PathString, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
1006
1166
|
static GetPathByRouteValues(generator: LinkGenerator, routeName: string, values: unknown, pathBase?: PathString, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
1007
|
-
static GetUriByRouteValues(generator: LinkGenerator, httpContext: HttpContext, routeName: string, values?: RouteValueDictionary, scheme?: string, host?:
|
|
1008
|
-
static GetUriByRouteValues(generator: LinkGenerator, httpContext: HttpContext, routeName: string, values: unknown, scheme?: string, host?:
|
|
1167
|
+
static GetUriByRouteValues(generator: LinkGenerator, httpContext: HttpContext, routeName: string, values?: RouteValueDictionary, scheme?: string, host?: Nullable_1<HostString>, pathBase?: Nullable_1<PathString>, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
1168
|
+
static GetUriByRouteValues(generator: LinkGenerator, httpContext: HttpContext, routeName: string, values: unknown, scheme?: string, host?: Nullable_1<HostString>, pathBase?: Nullable_1<PathString>, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
1009
1169
|
static GetUriByRouteValues(generator: LinkGenerator, routeName: string, values: RouteValueDictionary, scheme: string, host: HostString, pathBase?: PathString, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
1010
1170
|
static GetUriByRouteValues(generator: LinkGenerator, routeName: string, values: unknown, scheme: string, host: HostString, pathBase?: PathString, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
1011
1171
|
}
|
|
@@ -1021,9 +1181,9 @@ export abstract class LinkParserEndpointNameAddressExtensions$instance {
|
|
|
1021
1181
|
export type LinkParserEndpointNameAddressExtensions = LinkParserEndpointNameAddressExtensions$instance;
|
|
1022
1182
|
|
|
1023
1183
|
export abstract class PageLinkGeneratorExtensions$instance {
|
|
1024
|
-
static GetPathByPage(generator: LinkGenerator, httpContext: HttpContext, page?: string, handler?: string, values?: unknown, pathBase?:
|
|
1184
|
+
static GetPathByPage(generator: LinkGenerator, httpContext: HttpContext, page?: string, handler?: string, values?: unknown, pathBase?: Nullable_1<PathString>, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
1025
1185
|
static GetPathByPage(generator: LinkGenerator, page: string, handler?: string, values?: unknown, pathBase?: PathString, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
1026
|
-
static GetUriByPage(generator: LinkGenerator, httpContext: HttpContext, page?: string, handler?: string, values?: unknown, scheme?: string, host?:
|
|
1186
|
+
static GetUriByPage(generator: LinkGenerator, httpContext: HttpContext, page?: string, handler?: string, values?: unknown, scheme?: string, host?: Nullable_1<HostString>, pathBase?: Nullable_1<PathString>, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
1027
1187
|
static GetUriByPage(generator: LinkGenerator, page: string, handler: string, values: unknown, scheme: string, host: HostString, pathBase?: PathString, fragment?: FragmentString, options?: LinkOptions): string | undefined;
|
|
1028
1188
|
}
|
|
1029
1189
|
|
|
@@ -1032,37 +1192,37 @@ export type PageLinkGeneratorExtensions = PageLinkGeneratorExtensions$instance;
|
|
|
1032
1192
|
|
|
1033
1193
|
export abstract class RequestDelegateRouteBuilderExtensions$instance {
|
|
1034
1194
|
static MapDelete(builder: IRouteBuilder, template: string, handler: RequestDelegate): IRouteBuilder;
|
|
1035
|
-
static MapDelete(builder: IRouteBuilder, template: string, handler:
|
|
1195
|
+
static MapDelete(builder: IRouteBuilder, template: string, handler: Func_4<HttpRequest, HttpResponse, RouteData, Task>): IRouteBuilder;
|
|
1036
1196
|
static MapGet(builder: IRouteBuilder, template: string, handler: RequestDelegate): IRouteBuilder;
|
|
1037
|
-
static MapGet(builder: IRouteBuilder, template: string, handler:
|
|
1038
|
-
static MapMiddlewareDelete(builder: IRouteBuilder, template: string, action:
|
|
1039
|
-
static MapMiddlewareGet(builder: IRouteBuilder, template: string, action:
|
|
1040
|
-
static MapMiddlewarePost(builder: IRouteBuilder, template: string, action:
|
|
1041
|
-
static MapMiddlewarePut(builder: IRouteBuilder, template: string, action:
|
|
1042
|
-
static MapMiddlewareRoute(builder: IRouteBuilder, template: string, action:
|
|
1043
|
-
static MapMiddlewareVerb(builder: IRouteBuilder, verb: string, template: string, action:
|
|
1197
|
+
static MapGet(builder: IRouteBuilder, template: string, handler: Func_4<HttpRequest, HttpResponse, RouteData, Task>): IRouteBuilder;
|
|
1198
|
+
static MapMiddlewareDelete(builder: IRouteBuilder, template: string, action: Action_1<IApplicationBuilder>): IRouteBuilder;
|
|
1199
|
+
static MapMiddlewareGet(builder: IRouteBuilder, template: string, action: Action_1<IApplicationBuilder>): IRouteBuilder;
|
|
1200
|
+
static MapMiddlewarePost(builder: IRouteBuilder, template: string, action: Action_1<IApplicationBuilder>): IRouteBuilder;
|
|
1201
|
+
static MapMiddlewarePut(builder: IRouteBuilder, template: string, action: Action_1<IApplicationBuilder>): IRouteBuilder;
|
|
1202
|
+
static MapMiddlewareRoute(builder: IRouteBuilder, template: string, action: Action_1<IApplicationBuilder>): IRouteBuilder;
|
|
1203
|
+
static MapMiddlewareVerb(builder: IRouteBuilder, verb: string, template: string, action: Action_1<IApplicationBuilder>): IRouteBuilder;
|
|
1044
1204
|
static MapPost(builder: IRouteBuilder, template: string, handler: RequestDelegate): IRouteBuilder;
|
|
1045
|
-
static MapPost(builder: IRouteBuilder, template: string, handler:
|
|
1205
|
+
static MapPost(builder: IRouteBuilder, template: string, handler: Func_4<HttpRequest, HttpResponse, RouteData, Task>): IRouteBuilder;
|
|
1046
1206
|
static MapPut(builder: IRouteBuilder, template: string, handler: RequestDelegate): IRouteBuilder;
|
|
1047
|
-
static MapPut(builder: IRouteBuilder, template: string, handler:
|
|
1207
|
+
static MapPut(builder: IRouteBuilder, template: string, handler: Func_4<HttpRequest, HttpResponse, RouteData, Task>): IRouteBuilder;
|
|
1048
1208
|
static MapRoute(builder: IRouteBuilder, template: string, handler: RequestDelegate): IRouteBuilder;
|
|
1049
1209
|
static MapVerb(builder: IRouteBuilder, verb: string, template: string, handler: RequestDelegate): IRouteBuilder;
|
|
1050
|
-
static MapVerb(builder: IRouteBuilder, verb: string, template: string, handler:
|
|
1210
|
+
static MapVerb(builder: IRouteBuilder, verb: string, template: string, handler: Func_4<HttpRequest, HttpResponse, RouteData, Task>): IRouteBuilder;
|
|
1051
1211
|
}
|
|
1052
1212
|
|
|
1053
1213
|
|
|
1054
1214
|
export type RequestDelegateRouteBuilderExtensions = RequestDelegateRouteBuilderExtensions$instance;
|
|
1055
1215
|
|
|
1056
1216
|
export abstract class RouteConstraintMatcher$instance {
|
|
1057
|
-
static Match(constraints:
|
|
1217
|
+
static Match(constraints: IDictionary_2<System_Internal.String, IRouteConstraint>, routeValues: RouteValueDictionary, httpContext: HttpContext, route: IRouter, routeDirection: RouteDirection, logger: ILogger): boolean;
|
|
1058
1218
|
}
|
|
1059
1219
|
|
|
1060
1220
|
|
|
1061
1221
|
export type RouteConstraintMatcher = RouteConstraintMatcher$instance;
|
|
1062
1222
|
|
|
1063
1223
|
export abstract class RouteHandlerServices$instance {
|
|
1064
|
-
static Map(endpoints: IEndpointRouteBuilder, pattern: string, handler: Function, httpMethods:
|
|
1065
|
-
static Map(endpoints: IEndpointRouteBuilder, pattern: string, handler: Function, httpMethods:
|
|
1224
|
+
static Map(endpoints: IEndpointRouteBuilder, pattern: string, handler: Function, httpMethods: IEnumerable_1<System_Internal.String>, populateMetadata: Func_3<MethodInfo, RequestDelegateFactoryOptions, RequestDelegateMetadataResult>, createRequestDelegate: Func_4<Function, RequestDelegateFactoryOptions, RequestDelegateMetadataResult, RequestDelegateResult>, methodInfo: MethodInfo): RouteHandlerBuilder;
|
|
1225
|
+
static Map(endpoints: IEndpointRouteBuilder, pattern: string, handler: Function, httpMethods: IEnumerable_1<System_Internal.String>, populateMetadata: Func_3<MethodInfo, RequestDelegateFactoryOptions, RequestDelegateMetadataResult>, createRequestDelegate: Func_4<Function, RequestDelegateFactoryOptions, RequestDelegateMetadataResult, RequestDelegateResult>): RouteHandlerBuilder;
|
|
1066
1226
|
}
|
|
1067
1227
|
|
|
1068
1228
|
|