@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
|
@@ -7,24 +7,26 @@ 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 { ContentDispositionHeaderValue } from "../../Microsoft.Net.Http.Headers/internal/index.js";
|
|
10
|
-
import type {
|
|
11
|
-
import type {
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import type {
|
|
15
|
-
import
|
|
16
|
-
import type {
|
|
17
|
-
import type {
|
|
18
|
-
import
|
|
19
|
-
import type {
|
|
20
|
-
import type { StringValues } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Primitives.js";
|
|
10
|
+
import type { ArrayPool_1 } from "@tsonic/dotnet/System.Buffers/internal/index.js";
|
|
11
|
+
import type { Dictionary_2, IDictionary_2, IEnumerable_1, KeyValuePair_2 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
12
|
+
import type { PipeReader, PipeWriter } from "@tsonic/dotnet/System.IO.Pipelines/internal/index.js";
|
|
13
|
+
import * as System_IO_Internal from "@tsonic/dotnet/System.IO/internal/index.js";
|
|
14
|
+
import type { SeekOrigin, Stream, TextReader, TextWriter } from "@tsonic/dotnet/System.IO/internal/index.js";
|
|
15
|
+
import type { Encoding } from "@tsonic/dotnet/System.Text/internal/index.js";
|
|
16
|
+
import type { Task, Task_1, ValueTask, ValueTask_1 } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
17
|
+
import type { CancellationToken } from "@tsonic/dotnet/System.Threading/internal/index.js";
|
|
18
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
19
|
+
import type { ArraySegment_1, Boolean as ClrBoolean, Byte, Char, Func_1, IAsyncDisposable, IDisposable, Int32, Int64, Memory_1, Nullable_1, Object as ClrObject, ReadOnlyMemory_1, ReadOnlySpan_1, Span_1, String as ClrString, ValueType, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
20
|
+
import type { StringValues } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Primitives/internal/index.js";
|
|
21
21
|
|
|
22
22
|
export interface KeyValueAccumulator$instance {
|
|
23
|
+
readonly __tsonic_type_Microsoft_AspNetCore_WebUtilities_KeyValueAccumulator: never;
|
|
24
|
+
|
|
23
25
|
readonly HasValues: boolean;
|
|
24
26
|
readonly KeyCount: int;
|
|
25
27
|
ValueCount: int;
|
|
26
28
|
Append(key: string, value: string): void;
|
|
27
|
-
GetResults():
|
|
29
|
+
GetResults(): Dictionary_2<System_Internal.String, StringValues>;
|
|
28
30
|
}
|
|
29
31
|
|
|
30
32
|
|
|
@@ -36,23 +38,27 @@ export const KeyValueAccumulator: {
|
|
|
36
38
|
export type KeyValueAccumulator = KeyValueAccumulator$instance;
|
|
37
39
|
|
|
38
40
|
export interface QueryStringEnumerable$instance {
|
|
41
|
+
readonly __tsonic_type_Microsoft_AspNetCore_WebUtilities_QueryStringEnumerable: never;
|
|
42
|
+
|
|
39
43
|
GetEnumerator(): QueryStringEnumerable_Enumerator;
|
|
40
44
|
}
|
|
41
45
|
|
|
42
46
|
|
|
43
47
|
export const QueryStringEnumerable: {
|
|
44
48
|
new(queryString: string): QueryStringEnumerable;
|
|
45
|
-
new(queryString:
|
|
49
|
+
new(queryString: ReadOnlyMemory_1<System_Internal.Char>): QueryStringEnumerable;
|
|
46
50
|
};
|
|
47
51
|
|
|
48
52
|
|
|
49
53
|
export type QueryStringEnumerable = QueryStringEnumerable$instance;
|
|
50
54
|
|
|
51
55
|
export interface QueryStringEnumerable_EncodedNameValuePair$instance {
|
|
52
|
-
readonly
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
+
readonly __tsonic_type_Microsoft_AspNetCore_WebUtilities_QueryStringEnumerable_EncodedNameValuePair: never;
|
|
57
|
+
|
|
58
|
+
readonly EncodedName: ReadOnlyMemory_1<System_Internal.Char>;
|
|
59
|
+
readonly EncodedValue: ReadOnlyMemory_1<System_Internal.Char>;
|
|
60
|
+
DecodeName(): ReadOnlyMemory_1<System_Internal.Char>;
|
|
61
|
+
DecodeValue(): ReadOnlyMemory_1<System_Internal.Char>;
|
|
56
62
|
}
|
|
57
63
|
|
|
58
64
|
|
|
@@ -64,6 +70,8 @@ export const QueryStringEnumerable_EncodedNameValuePair: {
|
|
|
64
70
|
export type QueryStringEnumerable_EncodedNameValuePair = QueryStringEnumerable_EncodedNameValuePair$instance;
|
|
65
71
|
|
|
66
72
|
export interface QueryStringEnumerable_Enumerator$instance {
|
|
73
|
+
readonly __tsonic_type_Microsoft_AspNetCore_WebUtilities_QueryStringEnumerable_Enumerator: never;
|
|
74
|
+
|
|
67
75
|
Current: QueryStringEnumerable_EncodedNameValuePair;
|
|
68
76
|
MoveNext(): boolean;
|
|
69
77
|
}
|
|
@@ -77,7 +85,12 @@ export const QueryStringEnumerable_Enumerator: {
|
|
|
77
85
|
export type QueryStringEnumerable_Enumerator = QueryStringEnumerable_Enumerator$instance;
|
|
78
86
|
|
|
79
87
|
export interface BufferedReadStream$instance extends Stream {
|
|
80
|
-
readonly
|
|
88
|
+
readonly __tsonic_type_Microsoft_AspNetCore_WebUtilities_BufferedReadStream: never;
|
|
89
|
+
|
|
90
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
91
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
92
|
+
|
|
93
|
+
readonly BufferedData: ArraySegment_1<System_Internal.Byte>;
|
|
81
94
|
readonly CanRead: boolean;
|
|
82
95
|
readonly CanSeek: boolean;
|
|
83
96
|
readonly CanTimeout: boolean;
|
|
@@ -87,32 +100,37 @@ export interface BufferedReadStream$instance extends Stream {
|
|
|
87
100
|
Dispose(disposing: boolean): void;
|
|
88
101
|
EnsureBuffered(): boolean;
|
|
89
102
|
EnsureBuffered(minCount: int): boolean;
|
|
90
|
-
EnsureBufferedAsync(cancellationToken: CancellationToken):
|
|
91
|
-
EnsureBufferedAsync(minCount: int, cancellationToken: CancellationToken):
|
|
103
|
+
EnsureBufferedAsync(cancellationToken: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
104
|
+
EnsureBufferedAsync(minCount: int, cancellationToken: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
92
105
|
Flush(): void;
|
|
93
106
|
FlushAsync(cancellationToken: CancellationToken): Task;
|
|
94
107
|
Read(buffer: byte[], offset: int, count: int): int;
|
|
95
|
-
ReadAsync(buffer: byte[], offset: int, count: int, cancellationToken: CancellationToken):
|
|
96
|
-
ReadAsync(buffer:
|
|
108
|
+
ReadAsync(buffer: byte[], offset: int, count: int, cancellationToken: CancellationToken): Task_1<System_Internal.Int32>;
|
|
109
|
+
ReadAsync(buffer: Memory_1<System_Internal.Byte>, cancellationToken: CancellationToken): ValueTask_1<System_Internal.Int32>;
|
|
97
110
|
ReadLine(lengthLimit: int): string;
|
|
98
|
-
ReadLineAsync(lengthLimit: int, cancellationToken: CancellationToken):
|
|
111
|
+
ReadLineAsync(lengthLimit: int, cancellationToken: CancellationToken): Task_1<System_Internal.String>;
|
|
99
112
|
Seek(offset: long, origin: SeekOrigin): long;
|
|
100
113
|
SetLength(value: long): void;
|
|
101
114
|
Write(buffer: byte[], offset: int, count: int): void;
|
|
102
|
-
WriteAsync(buffer:
|
|
115
|
+
WriteAsync(buffer: ReadOnlyMemory_1<System_Internal.Byte>, cancellationToken: CancellationToken): ValueTask;
|
|
103
116
|
WriteAsync(buffer: byte[], offset: int, count: int, cancellationToken: CancellationToken): Task;
|
|
104
117
|
}
|
|
105
118
|
|
|
106
119
|
|
|
107
120
|
export const BufferedReadStream: {
|
|
108
121
|
new(inner: Stream, bufferSize: int): BufferedReadStream;
|
|
109
|
-
new(inner: Stream, bufferSize: int, bytePool:
|
|
122
|
+
new(inner: Stream, bufferSize: int, bytePool: ArrayPool_1<System_Internal.Byte>): BufferedReadStream;
|
|
110
123
|
};
|
|
111
124
|
|
|
112
125
|
|
|
113
126
|
export type BufferedReadStream = BufferedReadStream$instance;
|
|
114
127
|
|
|
115
128
|
export interface FileBufferingReadStream$instance extends Stream {
|
|
129
|
+
readonly __tsonic_type_Microsoft_AspNetCore_WebUtilities_FileBufferingReadStream: never;
|
|
130
|
+
|
|
131
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
132
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
133
|
+
|
|
116
134
|
readonly CanRead: boolean;
|
|
117
135
|
readonly CanSeek: boolean;
|
|
118
136
|
readonly CanWrite: boolean;
|
|
@@ -125,30 +143,35 @@ export interface FileBufferingReadStream$instance extends Stream {
|
|
|
125
143
|
Dispose(disposing: boolean): void;
|
|
126
144
|
DisposeAsync(): ValueTask;
|
|
127
145
|
Flush(): void;
|
|
128
|
-
Read(buffer:
|
|
146
|
+
Read(buffer: Span_1<System_Internal.Byte>): int;
|
|
129
147
|
Read(buffer: byte[], offset: int, count: int): int;
|
|
130
|
-
ReadAsync(buffer: byte[], offset: int, count: int, cancellationToken: CancellationToken):
|
|
131
|
-
ReadAsync(buffer:
|
|
148
|
+
ReadAsync(buffer: byte[], offset: int, count: int, cancellationToken: CancellationToken): Task_1<System_Internal.Int32>;
|
|
149
|
+
ReadAsync(buffer: Memory_1<System_Internal.Byte>, cancellationToken?: CancellationToken): ValueTask_1<System_Internal.Int32>;
|
|
132
150
|
Seek(offset: long, origin: SeekOrigin): long;
|
|
133
151
|
SetLength(value: long): void;
|
|
134
152
|
Write(buffer: byte[], offset: int, count: int): void;
|
|
135
|
-
WriteAsync(buffer:
|
|
153
|
+
WriteAsync(buffer: ReadOnlyMemory_1<System_Internal.Byte>, cancellationToken: CancellationToken): ValueTask;
|
|
136
154
|
WriteAsync(buffer: byte[], offset: int, count: int, cancellationToken: CancellationToken): Task;
|
|
137
155
|
}
|
|
138
156
|
|
|
139
157
|
|
|
140
158
|
export const FileBufferingReadStream: {
|
|
141
159
|
new(inner: Stream, memoryThreshold: int): FileBufferingReadStream;
|
|
142
|
-
new(inner: Stream, memoryThreshold: int, bufferLimit:
|
|
143
|
-
new(inner: Stream, memoryThreshold: int, bufferLimit:
|
|
144
|
-
new(inner: Stream, memoryThreshold: int, bufferLimit:
|
|
145
|
-
new(inner: Stream, memoryThreshold: int, bufferLimit:
|
|
160
|
+
new(inner: Stream, memoryThreshold: int, bufferLimit: Nullable_1<System_Internal.Int64>, tempFileDirectoryAccessor: Func_1<System_Internal.String>): FileBufferingReadStream;
|
|
161
|
+
new(inner: Stream, memoryThreshold: int, bufferLimit: Nullable_1<System_Internal.Int64>, tempFileDirectoryAccessor: Func_1<System_Internal.String>, bytePool: ArrayPool_1<System_Internal.Byte>): FileBufferingReadStream;
|
|
162
|
+
new(inner: Stream, memoryThreshold: int, bufferLimit: Nullable_1<System_Internal.Int64>, tempFileDirectory: string): FileBufferingReadStream;
|
|
163
|
+
new(inner: Stream, memoryThreshold: int, bufferLimit: Nullable_1<System_Internal.Int64>, tempFileDirectory: string, bytePool: ArrayPool_1<System_Internal.Byte>): FileBufferingReadStream;
|
|
146
164
|
};
|
|
147
165
|
|
|
148
166
|
|
|
149
167
|
export type FileBufferingReadStream = FileBufferingReadStream$instance;
|
|
150
168
|
|
|
151
169
|
export interface FileBufferingWriteStream$instance extends Stream {
|
|
170
|
+
readonly __tsonic_type_Microsoft_AspNetCore_WebUtilities_FileBufferingWriteStream: never;
|
|
171
|
+
|
|
172
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
173
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
174
|
+
|
|
152
175
|
readonly CanRead: boolean;
|
|
153
176
|
readonly CanSeek: boolean;
|
|
154
177
|
readonly CanWrite: boolean;
|
|
@@ -162,24 +185,26 @@ export interface FileBufferingWriteStream$instance extends Stream {
|
|
|
162
185
|
Flush(): void;
|
|
163
186
|
FlushAsync(cancellationToken: CancellationToken): Task;
|
|
164
187
|
Read(buffer: byte[], offset: int, count: int): int;
|
|
165
|
-
ReadAsync(buffer: byte[], offset: int, count: int, cancellationToken: CancellationToken):
|
|
166
|
-
ReadAsync(buffer:
|
|
188
|
+
ReadAsync(buffer: byte[], offset: int, count: int, cancellationToken: CancellationToken): Task_1<System_Internal.Int32>;
|
|
189
|
+
ReadAsync(buffer: Memory_1<System_Internal.Byte>, cancellationToken: CancellationToken): ValueTask_1<System_Internal.Int32>;
|
|
167
190
|
Seek(offset: long, origin: SeekOrigin): long;
|
|
168
191
|
SetLength(value: long): void;
|
|
169
192
|
Write(buffer: byte[], offset: int, count: int): void;
|
|
170
193
|
WriteAsync(buffer: byte[], offset: int, count: int, cancellationToken: CancellationToken): Task;
|
|
171
|
-
WriteAsync(buffer:
|
|
194
|
+
WriteAsync(buffer: ReadOnlyMemory_1<System_Internal.Byte>, cancellationToken?: CancellationToken): ValueTask;
|
|
172
195
|
}
|
|
173
196
|
|
|
174
197
|
|
|
175
198
|
export const FileBufferingWriteStream: {
|
|
176
|
-
new(memoryThreshold: int, bufferLimit:
|
|
199
|
+
new(memoryThreshold: int, bufferLimit: Nullable_1<System_Internal.Int64>, tempFileDirectoryAccessor: Func_1<System_Internal.String>): FileBufferingWriteStream;
|
|
177
200
|
};
|
|
178
201
|
|
|
179
202
|
|
|
180
203
|
export type FileBufferingWriteStream = FileBufferingWriteStream$instance;
|
|
181
204
|
|
|
182
205
|
export interface FileMultipartSection$instance {
|
|
206
|
+
readonly __tsonic_type_Microsoft_AspNetCore_WebUtilities_FileMultipartSection: never;
|
|
207
|
+
|
|
183
208
|
readonly FileName: string;
|
|
184
209
|
readonly FileStream: Stream | undefined;
|
|
185
210
|
readonly Name: string;
|
|
@@ -196,10 +221,12 @@ export const FileMultipartSection: {
|
|
|
196
221
|
export type FileMultipartSection = FileMultipartSection$instance;
|
|
197
222
|
|
|
198
223
|
export interface FormMultipartSection$instance {
|
|
224
|
+
readonly __tsonic_type_Microsoft_AspNetCore_WebUtilities_FormMultipartSection: never;
|
|
225
|
+
|
|
199
226
|
readonly Name: string;
|
|
200
227
|
readonly Section: MultipartSection;
|
|
201
|
-
GetValueAsync():
|
|
202
|
-
GetValueAsync(cancellationToken: CancellationToken):
|
|
228
|
+
GetValueAsync(): Task_1<System_Internal.String>;
|
|
229
|
+
GetValueAsync(cancellationToken: CancellationToken): ValueTask_1<System_Internal.String>;
|
|
203
230
|
}
|
|
204
231
|
|
|
205
232
|
|
|
@@ -212,10 +239,12 @@ export const FormMultipartSection: {
|
|
|
212
239
|
export type FormMultipartSection = FormMultipartSection$instance;
|
|
213
240
|
|
|
214
241
|
export interface FormPipeReader$instance {
|
|
242
|
+
readonly __tsonic_type_Microsoft_AspNetCore_WebUtilities_FormPipeReader: never;
|
|
243
|
+
|
|
215
244
|
KeyLengthLimit: int;
|
|
216
245
|
ValueCountLimit: int;
|
|
217
246
|
ValueLengthLimit: int;
|
|
218
|
-
ReadFormAsync(cancellationToken?: CancellationToken):
|
|
247
|
+
ReadFormAsync(cancellationToken?: CancellationToken): Task_1<Dictionary_2<System_Internal.String, StringValues>>;
|
|
219
248
|
}
|
|
220
249
|
|
|
221
250
|
|
|
@@ -228,23 +257,27 @@ export const FormPipeReader: {
|
|
|
228
257
|
export type FormPipeReader = FormPipeReader$instance;
|
|
229
258
|
|
|
230
259
|
export interface FormReader$instance {
|
|
260
|
+
readonly __tsonic_type_Microsoft_AspNetCore_WebUtilities_FormReader: never;
|
|
261
|
+
|
|
262
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
263
|
+
|
|
231
264
|
KeyLengthLimit: int;
|
|
232
265
|
ValueCountLimit: int;
|
|
233
266
|
ValueLengthLimit: int;
|
|
234
267
|
Dispose(): void;
|
|
235
|
-
ReadForm():
|
|
236
|
-
ReadFormAsync(cancellationToken?: CancellationToken):
|
|
237
|
-
ReadNextPair():
|
|
238
|
-
ReadNextPairAsync(cancellationToken?: CancellationToken):
|
|
268
|
+
ReadForm(): Dictionary_2<System_Internal.String, StringValues>;
|
|
269
|
+
ReadFormAsync(cancellationToken?: CancellationToken): Task_1<Dictionary_2<System_Internal.String, StringValues>>;
|
|
270
|
+
ReadNextPair(): Nullable_1<KeyValuePair_2<System_Internal.String, System_Internal.String>>;
|
|
271
|
+
ReadNextPairAsync(cancellationToken?: CancellationToken): Task_1<Nullable_1<KeyValuePair_2<System_Internal.String, System_Internal.String>>>;
|
|
239
272
|
}
|
|
240
273
|
|
|
241
274
|
|
|
242
275
|
export const FormReader: {
|
|
243
276
|
new(data: string): FormReader;
|
|
244
|
-
new(data: string, charPool:
|
|
277
|
+
new(data: string, charPool: ArrayPool_1<System_Internal.Char>): FormReader;
|
|
245
278
|
new(stream: Stream): FormReader;
|
|
246
279
|
new(stream: Stream, encoding: Encoding): FormReader;
|
|
247
|
-
new(stream: Stream, encoding: Encoding, charPool:
|
|
280
|
+
new(stream: Stream, encoding: Encoding, charPool: ArrayPool_1<System_Internal.Char>): FormReader;
|
|
248
281
|
readonly DefaultValueCountLimit: int;
|
|
249
282
|
readonly DefaultKeyLengthLimit: int;
|
|
250
283
|
readonly DefaultValueLengthLimit: int;
|
|
@@ -254,29 +287,38 @@ export const FormReader: {
|
|
|
254
287
|
export type FormReader = FormReader$instance;
|
|
255
288
|
|
|
256
289
|
export interface HttpRequestStreamReader$instance extends TextReader {
|
|
290
|
+
readonly __tsonic_type_Microsoft_AspNetCore_WebUtilities_HttpRequestStreamReader: never;
|
|
291
|
+
|
|
292
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
293
|
+
|
|
257
294
|
Dispose(disposing: boolean): void;
|
|
258
295
|
Peek(): int;
|
|
259
296
|
Read(): int;
|
|
260
297
|
Read(buffer: char[], index: int, count: int): int;
|
|
261
|
-
Read(buffer:
|
|
262
|
-
ReadAsync(buffer: char[], index: int, count: int):
|
|
263
|
-
ReadAsync(buffer:
|
|
298
|
+
Read(buffer: Span_1<System_Internal.Char>): int;
|
|
299
|
+
ReadAsync(buffer: char[], index: int, count: int): Task_1<System_Internal.Int32>;
|
|
300
|
+
ReadAsync(buffer: Memory_1<System_Internal.Char>, cancellationToken?: CancellationToken): ValueTask_1<System_Internal.Int32>;
|
|
264
301
|
ReadLine(): string | undefined;
|
|
265
|
-
ReadLineAsync():
|
|
266
|
-
ReadToEndAsync():
|
|
302
|
+
ReadLineAsync(): Task_1<string | undefined>;
|
|
303
|
+
ReadToEndAsync(): Task_1<System_Internal.String>;
|
|
267
304
|
}
|
|
268
305
|
|
|
269
306
|
|
|
270
307
|
export const HttpRequestStreamReader: {
|
|
271
308
|
new(stream: Stream, encoding: Encoding): HttpRequestStreamReader;
|
|
272
309
|
new(stream: Stream, encoding: Encoding, bufferSize: int): HttpRequestStreamReader;
|
|
273
|
-
new(stream: Stream, encoding: Encoding, bufferSize: int, bytePool:
|
|
310
|
+
new(stream: Stream, encoding: Encoding, bufferSize: int, bytePool: ArrayPool_1<System_Internal.Byte>, charPool: ArrayPool_1<System_Internal.Char>): HttpRequestStreamReader;
|
|
274
311
|
};
|
|
275
312
|
|
|
276
313
|
|
|
277
314
|
export type HttpRequestStreamReader = HttpRequestStreamReader$instance;
|
|
278
315
|
|
|
279
316
|
export interface HttpResponseStreamWriter$instance extends TextWriter {
|
|
317
|
+
readonly __tsonic_type_Microsoft_AspNetCore_WebUtilities_HttpResponseStreamWriter: never;
|
|
318
|
+
|
|
319
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
320
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
321
|
+
|
|
280
322
|
readonly Encoding: Encoding;
|
|
281
323
|
Dispose(disposing: boolean): void;
|
|
282
324
|
DisposeAsync(): ValueTask;
|
|
@@ -284,14 +326,14 @@ export interface HttpResponseStreamWriter$instance extends TextWriter {
|
|
|
284
326
|
FlushAsync(): Task;
|
|
285
327
|
Write(value: char): void;
|
|
286
328
|
Write(values: char[], index: int, count: int): void;
|
|
287
|
-
Write(value:
|
|
329
|
+
Write(value: ReadOnlySpan_1<System_Internal.Char>): void;
|
|
288
330
|
Write(value: string): void;
|
|
289
331
|
WriteAsync(value: char): Task;
|
|
290
332
|
WriteAsync(values: char[], index: int, count: int): Task;
|
|
291
333
|
WriteAsync(value: string): Task;
|
|
292
|
-
WriteAsync(value:
|
|
293
|
-
WriteLine(value:
|
|
294
|
-
WriteLineAsync(value:
|
|
334
|
+
WriteAsync(value: ReadOnlyMemory_1<System_Internal.Char>, cancellationToken?: CancellationToken): Task;
|
|
335
|
+
WriteLine(value: ReadOnlySpan_1<System_Internal.Char>): void;
|
|
336
|
+
WriteLineAsync(value: ReadOnlyMemory_1<System_Internal.Char>, cancellationToken?: CancellationToken): Task;
|
|
295
337
|
WriteLineAsync(values: char[], index: int, count: int): Task;
|
|
296
338
|
WriteLineAsync(value: char): Task;
|
|
297
339
|
WriteLineAsync(value: string): Task;
|
|
@@ -301,17 +343,19 @@ export interface HttpResponseStreamWriter$instance extends TextWriter {
|
|
|
301
343
|
export const HttpResponseStreamWriter: {
|
|
302
344
|
new(stream: Stream, encoding: Encoding): HttpResponseStreamWriter;
|
|
303
345
|
new(stream: Stream, encoding: Encoding, bufferSize: int): HttpResponseStreamWriter;
|
|
304
|
-
new(stream: Stream, encoding: Encoding, bufferSize: int, bytePool:
|
|
346
|
+
new(stream: Stream, encoding: Encoding, bufferSize: int, bytePool: ArrayPool_1<System_Internal.Byte>, charPool: ArrayPool_1<System_Internal.Char>): HttpResponseStreamWriter;
|
|
305
347
|
};
|
|
306
348
|
|
|
307
349
|
|
|
308
350
|
export type HttpResponseStreamWriter = HttpResponseStreamWriter$instance;
|
|
309
351
|
|
|
310
352
|
export interface MultipartReader$instance {
|
|
311
|
-
|
|
353
|
+
readonly __tsonic_type_Microsoft_AspNetCore_WebUtilities_MultipartReader: never;
|
|
354
|
+
|
|
355
|
+
BodyLengthLimit: Nullable_1<System_Internal.Int64>;
|
|
312
356
|
HeadersCountLimit: int;
|
|
313
357
|
HeadersLengthLimit: int;
|
|
314
|
-
ReadNextSectionAsync(cancellationToken?: CancellationToken):
|
|
358
|
+
ReadNextSectionAsync(cancellationToken?: CancellationToken): Task_1<MultipartSection | undefined>;
|
|
315
359
|
}
|
|
316
360
|
|
|
317
361
|
|
|
@@ -326,12 +370,14 @@ export const MultipartReader: {
|
|
|
326
370
|
export type MultipartReader = MultipartReader$instance;
|
|
327
371
|
|
|
328
372
|
export interface MultipartSection$instance {
|
|
329
|
-
|
|
373
|
+
readonly __tsonic_type_Microsoft_AspNetCore_WebUtilities_MultipartSection: never;
|
|
374
|
+
|
|
375
|
+
BaseStreamOffset: Nullable_1<System_Internal.Int64>;
|
|
330
376
|
Body: Stream;
|
|
331
377
|
readonly ContentDisposition: string | undefined;
|
|
332
378
|
readonly ContentType: string | undefined;
|
|
333
|
-
get Headers():
|
|
334
|
-
set Headers(value:
|
|
379
|
+
get Headers(): Dictionary_2<System_Internal.String, StringValues> | undefined;
|
|
380
|
+
set Headers(value: Dictionary_2<System_Internal.String, StringValues> | undefined);
|
|
335
381
|
}
|
|
336
382
|
|
|
337
383
|
|
|
@@ -360,20 +406,20 @@ export abstract class MultipartSectionConverterExtensions$instance {
|
|
|
360
406
|
export type MultipartSectionConverterExtensions = MultipartSectionConverterExtensions$instance;
|
|
361
407
|
|
|
362
408
|
export abstract class MultipartSectionStreamExtensions$instance {
|
|
363
|
-
static ReadAsStringAsync(section: MultipartSection, cancellationToken: CancellationToken):
|
|
364
|
-
static ReadAsStringAsync(section: MultipartSection):
|
|
409
|
+
static ReadAsStringAsync(section: MultipartSection, cancellationToken: CancellationToken): ValueTask_1<System_Internal.String>;
|
|
410
|
+
static ReadAsStringAsync(section: MultipartSection): Task_1<System_Internal.String>;
|
|
365
411
|
}
|
|
366
412
|
|
|
367
413
|
|
|
368
414
|
export type MultipartSectionStreamExtensions = MultipartSectionStreamExtensions$instance;
|
|
369
415
|
|
|
370
416
|
export abstract class QueryHelpers$instance {
|
|
371
|
-
static AddQueryString(uri: string, queryString:
|
|
372
|
-
static AddQueryString(uri: string, queryString:
|
|
373
|
-
static AddQueryString(uri: string, queryString:
|
|
417
|
+
static AddQueryString(uri: string, queryString: IDictionary_2<System_Internal.String, System_Internal.String>): string;
|
|
418
|
+
static AddQueryString(uri: string, queryString: IEnumerable_1<KeyValuePair_2<System_Internal.String, StringValues>>): string;
|
|
419
|
+
static AddQueryString(uri: string, queryString: IEnumerable_1<KeyValuePair_2<System_Internal.String, System_Internal.String>>): string;
|
|
374
420
|
static AddQueryString(uri: string, name: string, value: string): string;
|
|
375
|
-
static ParseNullableQuery(queryString: string):
|
|
376
|
-
static ParseQuery(queryString: string):
|
|
421
|
+
static ParseNullableQuery(queryString: string): Dictionary_2<System_Internal.String, StringValues> | undefined;
|
|
422
|
+
static ParseQuery(queryString: string): Dictionary_2<System_Internal.String, StringValues>;
|
|
377
423
|
}
|
|
378
424
|
|
|
379
425
|
|
|
@@ -387,8 +433,8 @@ export abstract class ReasonPhrases$instance {
|
|
|
387
433
|
export type ReasonPhrases = ReasonPhrases$instance;
|
|
388
434
|
|
|
389
435
|
export abstract class StreamHelperExtensions$instance {
|
|
390
|
-
static DrainAsync(stream: Stream, bytePool:
|
|
391
|
-
static DrainAsync(stream: Stream, limit:
|
|
436
|
+
static DrainAsync(stream: Stream, bytePool: ArrayPool_1<System_Internal.Byte>, limit: Nullable_1<System_Internal.Int64>, cancellationToken: CancellationToken): Task;
|
|
437
|
+
static DrainAsync(stream: Stream, limit: Nullable_1<System_Internal.Int64>, cancellationToken: CancellationToken): Task;
|
|
392
438
|
static DrainAsync(stream: Stream, cancellationToken: CancellationToken): Task;
|
|
393
439
|
}
|
|
394
440
|
|
|
@@ -402,8 +448,8 @@ export abstract class WebEncoders$instance {
|
|
|
402
448
|
static Base64UrlEncode(input: byte[], offset: int, output: char[], outputOffset: int, count: int): int;
|
|
403
449
|
static Base64UrlEncode(input: byte[], offset: int, count: int): string;
|
|
404
450
|
static Base64UrlEncode(input: byte[]): string;
|
|
405
|
-
static Base64UrlEncode(input:
|
|
406
|
-
static Base64UrlEncode(input:
|
|
451
|
+
static Base64UrlEncode(input: ReadOnlySpan_1<System_Internal.Byte>, output: Span_1<System_Internal.Char>): int;
|
|
452
|
+
static Base64UrlEncode(input: ReadOnlySpan_1<System_Internal.Byte>): string;
|
|
407
453
|
static GetArraySizeRequiredToDecode(count: int): int;
|
|
408
454
|
static GetArraySizeRequiredToEncode(count: int): int;
|
|
409
455
|
}
|