@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
|
@@ -9,12 +9,12 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
9
9
|
import type { IAuthorizeData } from "../../Microsoft.AspNetCore.Authorization/internal/index.js";
|
|
10
10
|
import type { ConnectionContext } from "../../Microsoft.AspNetCore.Connections/internal/index.js";
|
|
11
11
|
import type { HttpContext } from "../../Microsoft.AspNetCore.Http/internal/index.js";
|
|
12
|
-
import type {
|
|
13
|
-
import type {
|
|
14
|
-
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
15
|
-
import type { Boolean as ClrBoolean, Byte, Enum,
|
|
16
|
-
import * as Microsoft_Extensions_Options_Internal from "@tsonic/microsoft-extensions/Microsoft.Extensions.Options.js";
|
|
17
|
-
import type {
|
|
12
|
+
import type { IBufferWriter_1 } from "@tsonic/dotnet/System.Buffers/internal/index.js";
|
|
13
|
+
import type { IList_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
14
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
15
|
+
import type { Boolean as ClrBoolean, Byte, Enum, Func_2, IComparable, IConvertible, IFormattable, Int32, Int64, ISpanFormattable, Nullable_1, Object as ClrObject, ReadOnlySpan_1, String as ClrString, TimeSpan, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
16
|
+
import * as Microsoft_Extensions_Options_Internal from "@tsonic/microsoft-extensions/Microsoft.Extensions.Options/internal/index.js";
|
|
17
|
+
import type { IConfigureOptions_1 } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Options/internal/index.js";
|
|
18
18
|
|
|
19
19
|
export enum HttpTransportType {
|
|
20
20
|
None = 0,
|
|
@@ -25,8 +25,10 @@ export enum HttpTransportType {
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
export interface AvailableTransport$instance {
|
|
28
|
-
|
|
29
|
-
|
|
28
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Http_Connections_AvailableTransport: never;
|
|
29
|
+
|
|
30
|
+
get TransferFormats(): IList_1<System_Internal.String> | undefined;
|
|
31
|
+
set TransferFormats(value: IList_1<System_Internal.String> | undefined);
|
|
30
32
|
get Transport(): string | undefined;
|
|
31
33
|
set Transport(value: string | undefined);
|
|
32
34
|
}
|
|
@@ -40,7 +42,9 @@ export const AvailableTransport: {
|
|
|
40
42
|
export type AvailableTransport = AvailableTransport$instance;
|
|
41
43
|
|
|
42
44
|
export interface ConnectionOptions$instance {
|
|
43
|
-
|
|
45
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Http_Connections_ConnectionOptions: never;
|
|
46
|
+
|
|
47
|
+
DisconnectTimeout: Nullable_1<TimeSpan>;
|
|
44
48
|
}
|
|
45
49
|
|
|
46
50
|
|
|
@@ -52,6 +56,10 @@ export const ConnectionOptions: {
|
|
|
52
56
|
export type ConnectionOptions = ConnectionOptions$instance;
|
|
53
57
|
|
|
54
58
|
export interface ConnectionOptionsSetup$instance {
|
|
59
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Http_Connections_ConnectionOptionsSetup: never;
|
|
60
|
+
|
|
61
|
+
readonly __tsonic_iface_Microsoft_Extensions_Options_IConfigureOptions_1: never;
|
|
62
|
+
|
|
55
63
|
Configure(options: ConnectionOptions): void;
|
|
56
64
|
}
|
|
57
65
|
|
|
@@ -65,9 +73,11 @@ export const ConnectionOptionsSetup: {
|
|
|
65
73
|
export type ConnectionOptionsSetup = ConnectionOptionsSetup$instance;
|
|
66
74
|
|
|
67
75
|
export interface HttpConnectionDispatcherOptions$instance {
|
|
76
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Http_Connections_HttpConnectionDispatcherOptions: never;
|
|
77
|
+
|
|
68
78
|
AllowStatefulReconnects: boolean;
|
|
69
79
|
ApplicationMaxBufferSize: long;
|
|
70
|
-
readonly AuthorizationData:
|
|
80
|
+
readonly AuthorizationData: IList_1<IAuthorizeData>;
|
|
71
81
|
CloseOnAuthenticationExpiration: boolean;
|
|
72
82
|
readonly LongPolling: LongPollingOptions;
|
|
73
83
|
MinimumProtocolVersion: int;
|
|
@@ -86,6 +96,8 @@ export const HttpConnectionDispatcherOptions: {
|
|
|
86
96
|
export type HttpConnectionDispatcherOptions = HttpConnectionDispatcherOptions$instance;
|
|
87
97
|
|
|
88
98
|
export interface LongPollingOptions$instance {
|
|
99
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Http_Connections_LongPollingOptions: never;
|
|
100
|
+
|
|
89
101
|
PollTimeout: TimeSpan;
|
|
90
102
|
}
|
|
91
103
|
|
|
@@ -98,6 +110,8 @@ export const LongPollingOptions: {
|
|
|
98
110
|
export type LongPollingOptions = LongPollingOptions$instance;
|
|
99
111
|
|
|
100
112
|
export interface NegotiateMetadata$instance {
|
|
113
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Http_Connections_NegotiateMetadata: never;
|
|
114
|
+
|
|
101
115
|
}
|
|
102
116
|
|
|
103
117
|
|
|
@@ -109,10 +123,12 @@ export const NegotiateMetadata: {
|
|
|
109
123
|
export type NegotiateMetadata = NegotiateMetadata$instance;
|
|
110
124
|
|
|
111
125
|
export interface NegotiationResponse$instance {
|
|
126
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Http_Connections_NegotiationResponse: never;
|
|
127
|
+
|
|
112
128
|
get AccessToken(): string | undefined;
|
|
113
129
|
set AccessToken(value: string | undefined);
|
|
114
|
-
get AvailableTransports():
|
|
115
|
-
set AvailableTransports(value:
|
|
130
|
+
get AvailableTransports(): IList_1<AvailableTransport> | undefined;
|
|
131
|
+
set AvailableTransports(value: IList_1<AvailableTransport> | undefined);
|
|
116
132
|
get ConnectionId(): string | undefined;
|
|
117
133
|
set ConnectionId(value: string | undefined);
|
|
118
134
|
get ConnectionToken(): string | undefined;
|
|
@@ -134,9 +150,11 @@ export const NegotiationResponse: {
|
|
|
134
150
|
export type NegotiationResponse = NegotiationResponse$instance;
|
|
135
151
|
|
|
136
152
|
export interface WebSocketOptions$instance {
|
|
153
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Http_Connections_WebSocketOptions: never;
|
|
154
|
+
|
|
137
155
|
CloseTimeout: TimeSpan;
|
|
138
|
-
get SubProtocolSelector():
|
|
139
|
-
set SubProtocolSelector(value:
|
|
156
|
+
get SubProtocolSelector(): Func_2<IList_1<System_Internal.String>, System_Internal.String> | undefined;
|
|
157
|
+
set SubProtocolSelector(value: Func_2<IList_1<System_Internal.String>, System_Internal.String> | undefined);
|
|
140
158
|
}
|
|
141
159
|
|
|
142
160
|
|
|
@@ -162,8 +180,8 @@ export abstract class HttpTransports$instance {
|
|
|
162
180
|
export type HttpTransports = HttpTransports$instance;
|
|
163
181
|
|
|
164
182
|
export abstract class NegotiateProtocol$instance {
|
|
165
|
-
static ParseResponse(content:
|
|
166
|
-
static WriteResponse(response: NegotiationResponse, output:
|
|
183
|
+
static ParseResponse(content: ReadOnlySpan_1<System_Internal.Byte>): NegotiationResponse;
|
|
184
|
+
static WriteResponse(response: NegotiationResponse, output: IBufferWriter_1<System_Internal.Byte>): void;
|
|
167
185
|
}
|
|
168
186
|
|
|
169
187
|
|
|
@@ -11,6 +11,8 @@ import type { HttpTransportType } from "../../Microsoft.AspNetCore.Http.Connecti
|
|
|
11
11
|
import type { HttpContext } from "../../Microsoft.AspNetCore.Http/internal/index.js";
|
|
12
12
|
|
|
13
13
|
export interface IHttpContextFeature$instance {
|
|
14
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Connections_Features_IHttpContextFeature: never;
|
|
15
|
+
|
|
14
16
|
get HttpContext(): HttpContext | undefined;
|
|
15
17
|
set HttpContext(value: HttpContext | undefined);
|
|
16
18
|
}
|
|
@@ -19,6 +21,8 @@ export interface IHttpContextFeature$instance {
|
|
|
19
21
|
export type IHttpContextFeature = IHttpContextFeature$instance;
|
|
20
22
|
|
|
21
23
|
export interface IHttpTransportFeature$instance {
|
|
24
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Connections_Features_IHttpTransportFeature: never;
|
|
25
|
+
|
|
22
26
|
readonly TransportType: HttpTransportType;
|
|
23
27
|
}
|
|
24
28
|
|
|
@@ -10,22 +10,27 @@ import type { ptr } from "@tsonic/core/types.js";
|
|
|
10
10
|
|
|
11
11
|
// Import types from other namespaces
|
|
12
12
|
import type { FragmentString, HostString, HttpRequest, PathString, QueryString } from "../../Microsoft.AspNetCore.Http/internal/index.js";
|
|
13
|
-
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic.js";
|
|
14
|
-
import type {
|
|
15
|
-
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections.js";
|
|
16
|
-
import type { IEnumerable } from "@tsonic/dotnet/System.Collections.js";
|
|
17
|
-
import type { Stream } from "@tsonic/dotnet/System.IO.js";
|
|
18
|
-
import
|
|
19
|
-
import type {
|
|
20
|
-
import
|
|
21
|
-
import type {
|
|
22
|
-
import type { StringValues } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Primitives.js";
|
|
13
|
+
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
14
|
+
import type { IEnumerable_1, IEnumerator_1, KeyValuePair_2 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
15
|
+
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
16
|
+
import type { IEnumerable } from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
17
|
+
import type { Stream } from "@tsonic/dotnet/System.IO/internal/index.js";
|
|
18
|
+
import type { Task } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
19
|
+
import type { CancellationToken } from "@tsonic/dotnet/System.Threading/internal/index.js";
|
|
20
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
21
|
+
import type { Boolean as ClrBoolean, Int32, Int64, Nullable_1, Object as ClrObject, String as ClrString, Uri, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
22
|
+
import type { StringValues } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Primitives/internal/index.js";
|
|
23
23
|
|
|
24
24
|
export interface QueryBuilder$instance {
|
|
25
|
-
|
|
25
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Http_Extensions_QueryBuilder: never;
|
|
26
|
+
|
|
27
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
28
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
29
|
+
|
|
30
|
+
Add(key: string, values: IEnumerable_1<System_Internal.String>): void;
|
|
26
31
|
Add(key: string, value: string): void;
|
|
27
32
|
Equals(obj: unknown): boolean;
|
|
28
|
-
GetEnumerator():
|
|
33
|
+
GetEnumerator(): IEnumerator_1<KeyValuePair_2<System_Internal.String, System_Internal.String>>;
|
|
29
34
|
GetHashCode(): int;
|
|
30
35
|
ToQueryString(): QueryString;
|
|
31
36
|
ToString(): string;
|
|
@@ -34,8 +39,8 @@ export interface QueryBuilder$instance {
|
|
|
34
39
|
|
|
35
40
|
export const QueryBuilder: {
|
|
36
41
|
new(): QueryBuilder;
|
|
37
|
-
new(parameters:
|
|
38
|
-
new(parameters:
|
|
42
|
+
new(parameters: IEnumerable_1<KeyValuePair_2<System_Internal.String, System_Internal.String>>): QueryBuilder;
|
|
43
|
+
new(parameters: IEnumerable_1<KeyValuePair_2<System_Internal.String, StringValues>>): QueryBuilder;
|
|
39
44
|
};
|
|
40
45
|
|
|
41
46
|
|
|
@@ -49,8 +54,8 @@ export abstract class HttpRequestMultipartExtensions$instance {
|
|
|
49
54
|
export type HttpRequestMultipartExtensions = HttpRequestMultipartExtensions$instance;
|
|
50
55
|
|
|
51
56
|
export abstract class StreamCopyOperation$instance {
|
|
52
|
-
static CopyToAsync(source: Stream, destination: Stream, count:
|
|
53
|
-
static CopyToAsync(source: Stream, destination: Stream, count:
|
|
57
|
+
static CopyToAsync(source: Stream, destination: Stream, count: Nullable_1<System_Internal.Int64>, bufferSize: int, cancel: CancellationToken): Task;
|
|
58
|
+
static CopyToAsync(source: Stream, destination: Stream, count: Nullable_1<System_Internal.Int64>, cancel: CancellationToken): Task;
|
|
54
59
|
}
|
|
55
60
|
|
|
56
61
|
|