@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
|
@@ -11,12 +11,19 @@ import * as Microsoft_AspNetCore_Routing_Matching_Internal from "../../Microsoft
|
|
|
11
11
|
import type { IParameterLiteralNodeMatchingPolicy } from "../../Microsoft.AspNetCore.Routing.Matching/internal/index.js";
|
|
12
12
|
import * as Microsoft_AspNetCore_Routing_Internal from "../../Microsoft.AspNetCore.Routing/internal/index.js";
|
|
13
13
|
import type { IParameterPolicy, IRouteConstraint, IRouter, RouteDirection, RouteValueDictionary } from "../../Microsoft.AspNetCore.Routing/internal/index.js";
|
|
14
|
-
import type {
|
|
15
|
-
import
|
|
16
|
-
import
|
|
17
|
-
import type {
|
|
14
|
+
import type { IEnumerable_1, IList_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
15
|
+
import type { Regex } from "@tsonic/dotnet/System.Text.RegularExpressions/internal/index.js";
|
|
16
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
17
|
+
import type { Boolean as ClrBoolean, Int32, Int64, Object as ClrObject, String as ClrString } from "@tsonic/dotnet/System/internal/index.js";
|
|
18
|
+
|
|
19
|
+
export interface AlphaRouteConstraint$instance extends RegexRouteConstraint$instance, IParameterPolicy, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
20
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_AlphaRouteConstraint: never;
|
|
21
|
+
|
|
22
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
23
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
24
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_ICachableParameterPolicy: never;
|
|
25
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
18
26
|
|
|
19
|
-
export interface AlphaRouteConstraint$instance extends RegexRouteConstraint$instance, IParameterPolicy {
|
|
20
27
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
21
28
|
MatchesLiteral(parameterName: string, literal: string): boolean;
|
|
22
29
|
}
|
|
@@ -32,12 +39,17 @@ export interface __AlphaRouteConstraint$views {
|
|
|
32
39
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
33
40
|
}
|
|
34
41
|
|
|
35
|
-
export interface AlphaRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
36
|
-
|
|
37
42
|
export type AlphaRouteConstraint = AlphaRouteConstraint$instance & __AlphaRouteConstraint$views;
|
|
38
43
|
|
|
39
44
|
|
|
40
|
-
export interface BoolRouteConstraint$instance extends IParameterPolicy {
|
|
45
|
+
export interface BoolRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
46
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_BoolRouteConstraint: never;
|
|
47
|
+
|
|
48
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
49
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
50
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_ICachableParameterPolicy: never;
|
|
51
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
52
|
+
|
|
41
53
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
42
54
|
}
|
|
43
55
|
|
|
@@ -52,19 +64,23 @@ export interface __BoolRouteConstraint$views {
|
|
|
52
64
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
53
65
|
}
|
|
54
66
|
|
|
55
|
-
export interface BoolRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
56
|
-
|
|
57
67
|
export type BoolRouteConstraint = BoolRouteConstraint$instance & __BoolRouteConstraint$views;
|
|
58
68
|
|
|
59
69
|
|
|
60
|
-
export interface CompositeRouteConstraint$instance extends IParameterPolicy {
|
|
61
|
-
|
|
70
|
+
export interface CompositeRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
71
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_CompositeRouteConstraint: never;
|
|
72
|
+
|
|
73
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
74
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
75
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
76
|
+
|
|
77
|
+
Constraints: IEnumerable_1<IRouteConstraint>;
|
|
62
78
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
63
79
|
}
|
|
64
80
|
|
|
65
81
|
|
|
66
82
|
export const CompositeRouteConstraint: {
|
|
67
|
-
new(constraints:
|
|
83
|
+
new(constraints: IEnumerable_1<IRouteConstraint>): CompositeRouteConstraint;
|
|
68
84
|
};
|
|
69
85
|
|
|
70
86
|
|
|
@@ -73,12 +89,17 @@ export interface __CompositeRouteConstraint$views {
|
|
|
73
89
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
74
90
|
}
|
|
75
91
|
|
|
76
|
-
export interface CompositeRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
77
|
-
|
|
78
92
|
export type CompositeRouteConstraint = CompositeRouteConstraint$instance & __CompositeRouteConstraint$views;
|
|
79
93
|
|
|
80
94
|
|
|
81
|
-
export interface DateTimeRouteConstraint$instance extends IParameterPolicy {
|
|
95
|
+
export interface DateTimeRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
96
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_DateTimeRouteConstraint: never;
|
|
97
|
+
|
|
98
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
99
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
100
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_ICachableParameterPolicy: never;
|
|
101
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
102
|
+
|
|
82
103
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
83
104
|
}
|
|
84
105
|
|
|
@@ -93,12 +114,17 @@ export interface __DateTimeRouteConstraint$views {
|
|
|
93
114
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
94
115
|
}
|
|
95
116
|
|
|
96
|
-
export interface DateTimeRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
97
|
-
|
|
98
117
|
export type DateTimeRouteConstraint = DateTimeRouteConstraint$instance & __DateTimeRouteConstraint$views;
|
|
99
118
|
|
|
100
119
|
|
|
101
|
-
export interface DecimalRouteConstraint$instance extends IParameterPolicy {
|
|
120
|
+
export interface DecimalRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
121
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_DecimalRouteConstraint: never;
|
|
122
|
+
|
|
123
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
124
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
125
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_ICachableParameterPolicy: never;
|
|
126
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
127
|
+
|
|
102
128
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
103
129
|
}
|
|
104
130
|
|
|
@@ -113,12 +139,17 @@ export interface __DecimalRouteConstraint$views {
|
|
|
113
139
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
114
140
|
}
|
|
115
141
|
|
|
116
|
-
export interface DecimalRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
117
|
-
|
|
118
142
|
export type DecimalRouteConstraint = DecimalRouteConstraint$instance & __DecimalRouteConstraint$views;
|
|
119
143
|
|
|
120
144
|
|
|
121
|
-
export interface DoubleRouteConstraint$instance extends IParameterPolicy {
|
|
145
|
+
export interface DoubleRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
146
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_DoubleRouteConstraint: never;
|
|
147
|
+
|
|
148
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
149
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
150
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_ICachableParameterPolicy: never;
|
|
151
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
152
|
+
|
|
122
153
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
123
154
|
}
|
|
124
155
|
|
|
@@ -133,12 +164,17 @@ export interface __DoubleRouteConstraint$views {
|
|
|
133
164
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
134
165
|
}
|
|
135
166
|
|
|
136
|
-
export interface DoubleRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
137
|
-
|
|
138
167
|
export type DoubleRouteConstraint = DoubleRouteConstraint$instance & __DoubleRouteConstraint$views;
|
|
139
168
|
|
|
140
169
|
|
|
141
|
-
export interface FileNameRouteConstraint$instance extends IParameterPolicy {
|
|
170
|
+
export interface FileNameRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
171
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_FileNameRouteConstraint: never;
|
|
172
|
+
|
|
173
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
174
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
175
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_ICachableParameterPolicy: never;
|
|
176
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
177
|
+
|
|
142
178
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
143
179
|
}
|
|
144
180
|
|
|
@@ -153,12 +189,17 @@ export interface __FileNameRouteConstraint$views {
|
|
|
153
189
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
154
190
|
}
|
|
155
191
|
|
|
156
|
-
export interface FileNameRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
157
|
-
|
|
158
192
|
export type FileNameRouteConstraint = FileNameRouteConstraint$instance & __FileNameRouteConstraint$views;
|
|
159
193
|
|
|
160
194
|
|
|
161
|
-
export interface FloatRouteConstraint$instance extends IParameterPolicy {
|
|
195
|
+
export interface FloatRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
196
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_FloatRouteConstraint: never;
|
|
197
|
+
|
|
198
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
199
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
200
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_ICachableParameterPolicy: never;
|
|
201
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
202
|
+
|
|
162
203
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
163
204
|
}
|
|
164
205
|
|
|
@@ -173,12 +214,17 @@ export interface __FloatRouteConstraint$views {
|
|
|
173
214
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
174
215
|
}
|
|
175
216
|
|
|
176
|
-
export interface FloatRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
177
|
-
|
|
178
217
|
export type FloatRouteConstraint = FloatRouteConstraint$instance & __FloatRouteConstraint$views;
|
|
179
218
|
|
|
180
219
|
|
|
181
|
-
export interface GuidRouteConstraint$instance extends IParameterPolicy {
|
|
220
|
+
export interface GuidRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
221
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_GuidRouteConstraint: never;
|
|
222
|
+
|
|
223
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
224
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
225
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_ICachableParameterPolicy: never;
|
|
226
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
227
|
+
|
|
182
228
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
183
229
|
}
|
|
184
230
|
|
|
@@ -193,13 +239,16 @@ export interface __GuidRouteConstraint$views {
|
|
|
193
239
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
194
240
|
}
|
|
195
241
|
|
|
196
|
-
export interface GuidRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
197
|
-
|
|
198
242
|
export type GuidRouteConstraint = GuidRouteConstraint$instance & __GuidRouteConstraint$views;
|
|
199
243
|
|
|
200
244
|
|
|
201
|
-
export interface HttpMethodRouteConstraint$instance extends IParameterPolicy {
|
|
202
|
-
readonly
|
|
245
|
+
export interface HttpMethodRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance {
|
|
246
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_HttpMethodRouteConstraint: never;
|
|
247
|
+
|
|
248
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
249
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
250
|
+
|
|
251
|
+
readonly AllowedMethods: IList_1<System_Internal.String>;
|
|
203
252
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
204
253
|
}
|
|
205
254
|
|
|
@@ -213,12 +262,17 @@ export interface __HttpMethodRouteConstraint$views {
|
|
|
213
262
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
214
263
|
}
|
|
215
264
|
|
|
216
|
-
export interface HttpMethodRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance {}
|
|
217
|
-
|
|
218
265
|
export type HttpMethodRouteConstraint = HttpMethodRouteConstraint$instance & __HttpMethodRouteConstraint$views;
|
|
219
266
|
|
|
220
267
|
|
|
221
|
-
export interface IntRouteConstraint$instance extends IParameterPolicy {
|
|
268
|
+
export interface IntRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
269
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_IntRouteConstraint: never;
|
|
270
|
+
|
|
271
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
272
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
273
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_ICachableParameterPolicy: never;
|
|
274
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
275
|
+
|
|
222
276
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
223
277
|
}
|
|
224
278
|
|
|
@@ -233,12 +287,17 @@ export interface __IntRouteConstraint$views {
|
|
|
233
287
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
234
288
|
}
|
|
235
289
|
|
|
236
|
-
export interface IntRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
237
|
-
|
|
238
290
|
export type IntRouteConstraint = IntRouteConstraint$instance & __IntRouteConstraint$views;
|
|
239
291
|
|
|
240
292
|
|
|
241
|
-
export interface LengthRouteConstraint$instance extends IParameterPolicy {
|
|
293
|
+
export interface LengthRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
294
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_LengthRouteConstraint: never;
|
|
295
|
+
|
|
296
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
297
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
298
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_ICachableParameterPolicy: never;
|
|
299
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
300
|
+
|
|
242
301
|
readonly MaxLength: int;
|
|
243
302
|
readonly MinLength: int;
|
|
244
303
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
@@ -256,12 +315,17 @@ export interface __LengthRouteConstraint$views {
|
|
|
256
315
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
257
316
|
}
|
|
258
317
|
|
|
259
|
-
export interface LengthRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
260
|
-
|
|
261
318
|
export type LengthRouteConstraint = LengthRouteConstraint$instance & __LengthRouteConstraint$views;
|
|
262
319
|
|
|
263
320
|
|
|
264
|
-
export interface LongRouteConstraint$instance extends IParameterPolicy {
|
|
321
|
+
export interface LongRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
322
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_LongRouteConstraint: never;
|
|
323
|
+
|
|
324
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
325
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
326
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_ICachableParameterPolicy: never;
|
|
327
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
328
|
+
|
|
265
329
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
266
330
|
}
|
|
267
331
|
|
|
@@ -276,12 +340,17 @@ export interface __LongRouteConstraint$views {
|
|
|
276
340
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
277
341
|
}
|
|
278
342
|
|
|
279
|
-
export interface LongRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
280
|
-
|
|
281
343
|
export type LongRouteConstraint = LongRouteConstraint$instance & __LongRouteConstraint$views;
|
|
282
344
|
|
|
283
345
|
|
|
284
|
-
export interface MaxLengthRouteConstraint$instance extends IParameterPolicy {
|
|
346
|
+
export interface MaxLengthRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
347
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_MaxLengthRouteConstraint: never;
|
|
348
|
+
|
|
349
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
350
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
351
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_ICachableParameterPolicy: never;
|
|
352
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
353
|
+
|
|
285
354
|
readonly MaxLength: int;
|
|
286
355
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
287
356
|
}
|
|
@@ -297,12 +366,17 @@ export interface __MaxLengthRouteConstraint$views {
|
|
|
297
366
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
298
367
|
}
|
|
299
368
|
|
|
300
|
-
export interface MaxLengthRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
301
|
-
|
|
302
369
|
export type MaxLengthRouteConstraint = MaxLengthRouteConstraint$instance & __MaxLengthRouteConstraint$views;
|
|
303
370
|
|
|
304
371
|
|
|
305
|
-
export interface MaxRouteConstraint$instance extends IParameterPolicy {
|
|
372
|
+
export interface MaxRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
373
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_MaxRouteConstraint: never;
|
|
374
|
+
|
|
375
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
376
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
377
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_ICachableParameterPolicy: never;
|
|
378
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
379
|
+
|
|
306
380
|
Max: long;
|
|
307
381
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
308
382
|
}
|
|
@@ -318,12 +392,17 @@ export interface __MaxRouteConstraint$views {
|
|
|
318
392
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
319
393
|
}
|
|
320
394
|
|
|
321
|
-
export interface MaxRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
322
|
-
|
|
323
395
|
export type MaxRouteConstraint = MaxRouteConstraint$instance & __MaxRouteConstraint$views;
|
|
324
396
|
|
|
325
397
|
|
|
326
|
-
export interface MinLengthRouteConstraint$instance extends IParameterPolicy {
|
|
398
|
+
export interface MinLengthRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
399
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_MinLengthRouteConstraint: never;
|
|
400
|
+
|
|
401
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
402
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
403
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_ICachableParameterPolicy: never;
|
|
404
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
405
|
+
|
|
327
406
|
MinLength: int;
|
|
328
407
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
329
408
|
}
|
|
@@ -339,12 +418,17 @@ export interface __MinLengthRouteConstraint$views {
|
|
|
339
418
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
340
419
|
}
|
|
341
420
|
|
|
342
|
-
export interface MinLengthRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
343
|
-
|
|
344
421
|
export type MinLengthRouteConstraint = MinLengthRouteConstraint$instance & __MinLengthRouteConstraint$views;
|
|
345
422
|
|
|
346
423
|
|
|
347
|
-
export interface MinRouteConstraint$instance extends IParameterPolicy {
|
|
424
|
+
export interface MinRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
425
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_MinRouteConstraint: never;
|
|
426
|
+
|
|
427
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
428
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
429
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_ICachableParameterPolicy: never;
|
|
430
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
431
|
+
|
|
348
432
|
readonly Min: long;
|
|
349
433
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
350
434
|
}
|
|
@@ -360,12 +444,17 @@ export interface __MinRouteConstraint$views {
|
|
|
360
444
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
361
445
|
}
|
|
362
446
|
|
|
363
|
-
export interface MinRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
364
|
-
|
|
365
447
|
export type MinRouteConstraint = MinRouteConstraint$instance & __MinRouteConstraint$views;
|
|
366
448
|
|
|
367
449
|
|
|
368
|
-
export interface NonFileNameRouteConstraint$instance extends IParameterPolicy {
|
|
450
|
+
export interface NonFileNameRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
451
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_NonFileNameRouteConstraint: never;
|
|
452
|
+
|
|
453
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
454
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
455
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_ICachableParameterPolicy: never;
|
|
456
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
457
|
+
|
|
369
458
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
370
459
|
}
|
|
371
460
|
|
|
@@ -380,12 +469,15 @@ export interface __NonFileNameRouteConstraint$views {
|
|
|
380
469
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
381
470
|
}
|
|
382
471
|
|
|
383
|
-
export interface NonFileNameRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
384
|
-
|
|
385
472
|
export type NonFileNameRouteConstraint = NonFileNameRouteConstraint$instance & __NonFileNameRouteConstraint$views;
|
|
386
473
|
|
|
387
474
|
|
|
388
|
-
export interface OptionalRouteConstraint$instance extends IParameterPolicy {
|
|
475
|
+
export interface OptionalRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance {
|
|
476
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_OptionalRouteConstraint: never;
|
|
477
|
+
|
|
478
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
479
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
480
|
+
|
|
389
481
|
readonly InnerConstraint: IRouteConstraint;
|
|
390
482
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
391
483
|
}
|
|
@@ -400,12 +492,17 @@ export interface __OptionalRouteConstraint$views {
|
|
|
400
492
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
401
493
|
}
|
|
402
494
|
|
|
403
|
-
export interface OptionalRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance {}
|
|
404
|
-
|
|
405
495
|
export type OptionalRouteConstraint = OptionalRouteConstraint$instance & __OptionalRouteConstraint$views;
|
|
406
496
|
|
|
407
497
|
|
|
408
|
-
export interface RangeRouteConstraint$instance extends IParameterPolicy {
|
|
498
|
+
export interface RangeRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
499
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_RangeRouteConstraint: never;
|
|
500
|
+
|
|
501
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
502
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
503
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_ICachableParameterPolicy: never;
|
|
504
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
505
|
+
|
|
409
506
|
Max: long;
|
|
410
507
|
Min: long;
|
|
411
508
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
@@ -422,12 +519,17 @@ export interface __RangeRouteConstraint$views {
|
|
|
422
519
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
423
520
|
}
|
|
424
521
|
|
|
425
|
-
export interface RangeRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
426
|
-
|
|
427
522
|
export type RangeRouteConstraint = RangeRouteConstraint$instance & __RangeRouteConstraint$views;
|
|
428
523
|
|
|
429
524
|
|
|
430
|
-
export interface RegexInlineRouteConstraint$instance extends RegexRouteConstraint$instance, IParameterPolicy {
|
|
525
|
+
export interface RegexInlineRouteConstraint$instance extends RegexRouteConstraint$instance, IParameterPolicy, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
526
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_RegexInlineRouteConstraint: never;
|
|
527
|
+
|
|
528
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
529
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
530
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_ICachableParameterPolicy: never;
|
|
531
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
532
|
+
|
|
431
533
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
432
534
|
MatchesLiteral(parameterName: string, literal: string): boolean;
|
|
433
535
|
}
|
|
@@ -443,12 +545,16 @@ export interface __RegexInlineRouteConstraint$views {
|
|
|
443
545
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
444
546
|
}
|
|
445
547
|
|
|
446
|
-
export interface RegexInlineRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
447
|
-
|
|
448
548
|
export type RegexInlineRouteConstraint = RegexInlineRouteConstraint$instance & __RegexInlineRouteConstraint$views;
|
|
449
549
|
|
|
450
550
|
|
|
451
|
-
export interface RegexRouteConstraint$instance extends IParameterPolicy {
|
|
551
|
+
export interface RegexRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
552
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_RegexRouteConstraint: never;
|
|
553
|
+
|
|
554
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
555
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
556
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
557
|
+
|
|
452
558
|
readonly Constraint: Regex;
|
|
453
559
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
454
560
|
}
|
|
@@ -465,12 +571,15 @@ export interface __RegexRouteConstraint$views {
|
|
|
465
571
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
466
572
|
}
|
|
467
573
|
|
|
468
|
-
export interface RegexRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
469
|
-
|
|
470
574
|
export type RegexRouteConstraint = RegexRouteConstraint$instance & __RegexRouteConstraint$views;
|
|
471
575
|
|
|
472
576
|
|
|
473
|
-
export interface RequiredRouteConstraint$instance extends IParameterPolicy {
|
|
577
|
+
export interface RequiredRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance {
|
|
578
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_RequiredRouteConstraint: never;
|
|
579
|
+
|
|
580
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
581
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
582
|
+
|
|
474
583
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
475
584
|
}
|
|
476
585
|
|
|
@@ -484,12 +593,17 @@ export interface __RequiredRouteConstraint$views {
|
|
|
484
593
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
485
594
|
}
|
|
486
595
|
|
|
487
|
-
export interface RequiredRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance {}
|
|
488
|
-
|
|
489
596
|
export type RequiredRouteConstraint = RequiredRouteConstraint$instance & __RequiredRouteConstraint$views;
|
|
490
597
|
|
|
491
598
|
|
|
492
|
-
export interface StringRouteConstraint$instance extends IParameterPolicy {
|
|
599
|
+
export interface StringRouteConstraint$instance extends IParameterPolicy, Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {
|
|
600
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Constraints_StringRouteConstraint: never;
|
|
601
|
+
|
|
602
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IParameterPolicy: never;
|
|
603
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_IRouteConstraint: never;
|
|
604
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_ICachableParameterPolicy: never;
|
|
605
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Routing_Matching_IParameterLiteralNodeMatchingPolicy: never;
|
|
606
|
+
|
|
493
607
|
Match(httpContext: HttpContext, route: IRouter, routeKey: string, values: RouteValueDictionary, routeDirection: RouteDirection): boolean;
|
|
494
608
|
}
|
|
495
609
|
|
|
@@ -504,8 +618,6 @@ export interface __StringRouteConstraint$views {
|
|
|
504
618
|
As_IRouteConstraint(): Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance;
|
|
505
619
|
}
|
|
506
620
|
|
|
507
|
-
export interface StringRouteConstraint$instance extends Microsoft_AspNetCore_Routing_Internal.IRouteConstraint$instance, Microsoft_AspNetCore_Routing_Matching_Internal.IParameterLiteralNodeMatchingPolicy$instance {}
|
|
508
|
-
|
|
509
621
|
export type StringRouteConstraint = StringRouteConstraint$instance & __StringRouteConstraint$views;
|
|
510
622
|
|
|
511
623
|
|
|
@@ -7,11 +7,13 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
7
7
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
9
|
import type { EndpointDataSource } from "../../Microsoft.AspNetCore.Routing/internal/index.js";
|
|
10
|
-
import type { TextWriter } from "@tsonic/dotnet/System.IO.js";
|
|
11
|
-
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
12
|
-
import type { IServiceProvider, Object as ClrObject, Void } from "@tsonic/dotnet/System.js";
|
|
10
|
+
import type { TextWriter } from "@tsonic/dotnet/System.IO/internal/index.js";
|
|
11
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
12
|
+
import type { IServiceProvider, Object as ClrObject, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
13
13
|
|
|
14
14
|
export interface DfaGraphWriter$instance {
|
|
15
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Routing_Internal_DfaGraphWriter: never;
|
|
16
|
+
|
|
15
17
|
Write(dataSource: EndpointDataSource, writer: TextWriter): void;
|
|
16
18
|
}
|
|
17
19
|
|