@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 { ptr } from "@tsonic/core/types.js";
|
|
10
10
|
|
|
11
11
|
// Import types from other namespaces
|
|
12
|
-
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic.js";
|
|
13
|
-
import type {
|
|
14
|
-
import
|
|
15
|
-
import
|
|
16
|
-
import type {
|
|
17
|
-
import type { StringSegment, StringValues } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Primitives.js";
|
|
12
|
+
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
13
|
+
import type { ICollection_1, IComparer_1, IEnumerable_1, IList_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
14
|
+
import type { Encoding, StringBuilder } from "@tsonic/dotnet/System.Text/internal/index.js";
|
|
15
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
16
|
+
import type { Boolean as ClrBoolean, DateTimeOffset, Double, Enum, IComparable, IConvertible, IFormattable, Int32, Int64, ISpanFormattable, Nullable_1, Object as ClrObject, String as ClrString, TimeSpan, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
17
|
+
import type { StringSegment, StringValues } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Primitives/internal/index.js";
|
|
18
18
|
|
|
19
19
|
export enum SameSiteMode {
|
|
20
20
|
Unspecified = -1,
|
|
@@ -25,22 +25,24 @@ export enum SameSiteMode {
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
export interface CacheControlHeaderValue$instance {
|
|
28
|
-
readonly
|
|
29
|
-
|
|
28
|
+
readonly __tsonic_type_Microsoft_Net_Http_Headers_CacheControlHeaderValue: never;
|
|
29
|
+
|
|
30
|
+
readonly Extensions: IList_1<NameValueHeaderValue>;
|
|
31
|
+
MaxAge: Nullable_1<TimeSpan>;
|
|
30
32
|
MaxStale: boolean;
|
|
31
|
-
MaxStaleLimit:
|
|
32
|
-
MinFresh:
|
|
33
|
+
MaxStaleLimit: Nullable_1<TimeSpan>;
|
|
34
|
+
MinFresh: Nullable_1<TimeSpan>;
|
|
33
35
|
MustRevalidate: boolean;
|
|
34
36
|
NoCache: boolean;
|
|
35
|
-
readonly NoCacheHeaders:
|
|
37
|
+
readonly NoCacheHeaders: ICollection_1<StringSegment>;
|
|
36
38
|
NoStore: boolean;
|
|
37
39
|
NoTransform: boolean;
|
|
38
40
|
OnlyIfCached: boolean;
|
|
39
41
|
Private: boolean;
|
|
40
|
-
readonly PrivateHeaders:
|
|
42
|
+
readonly PrivateHeaders: ICollection_1<StringSegment>;
|
|
41
43
|
ProxyRevalidate: boolean;
|
|
42
44
|
Public: boolean;
|
|
43
|
-
SharedMaxAge:
|
|
45
|
+
SharedMaxAge: Nullable_1<TimeSpan>;
|
|
44
46
|
Equals(obj: unknown): boolean;
|
|
45
47
|
GetHashCode(): int;
|
|
46
48
|
ToString(): string;
|
|
@@ -69,15 +71,17 @@ export const CacheControlHeaderValue: {
|
|
|
69
71
|
export type CacheControlHeaderValue = CacheControlHeaderValue$instance;
|
|
70
72
|
|
|
71
73
|
export interface ContentDispositionHeaderValue$instance {
|
|
72
|
-
|
|
74
|
+
readonly __tsonic_type_Microsoft_Net_Http_Headers_ContentDispositionHeaderValue: never;
|
|
75
|
+
|
|
76
|
+
CreationDate: Nullable_1<DateTimeOffset>;
|
|
73
77
|
DispositionType: StringSegment;
|
|
74
78
|
FileName: StringSegment;
|
|
75
79
|
FileNameStar: StringSegment;
|
|
76
|
-
ModificationDate:
|
|
80
|
+
ModificationDate: Nullable_1<DateTimeOffset>;
|
|
77
81
|
Name: StringSegment;
|
|
78
|
-
readonly Parameters:
|
|
79
|
-
ReadDate:
|
|
80
|
-
Size:
|
|
82
|
+
readonly Parameters: IList_1<NameValueHeaderValue>;
|
|
83
|
+
ReadDate: Nullable_1<DateTimeOffset>;
|
|
84
|
+
Size: Nullable_1<System_Internal.Int64>;
|
|
81
85
|
Equals(obj: unknown): boolean;
|
|
82
86
|
GetHashCode(): int;
|
|
83
87
|
SetHttpFileName(fileName: StringSegment): void;
|
|
@@ -96,11 +100,13 @@ export const ContentDispositionHeaderValue: {
|
|
|
96
100
|
export type ContentDispositionHeaderValue = ContentDispositionHeaderValue$instance;
|
|
97
101
|
|
|
98
102
|
export interface ContentRangeHeaderValue$instance {
|
|
99
|
-
|
|
103
|
+
readonly __tsonic_type_Microsoft_Net_Http_Headers_ContentRangeHeaderValue: never;
|
|
104
|
+
|
|
105
|
+
From: Nullable_1<System_Internal.Int64>;
|
|
100
106
|
readonly HasLength: boolean;
|
|
101
107
|
readonly HasRange: boolean;
|
|
102
|
-
Length:
|
|
103
|
-
To:
|
|
108
|
+
Length: Nullable_1<System_Internal.Int64>;
|
|
109
|
+
To: Nullable_1<System_Internal.Int64>;
|
|
104
110
|
Unit: StringSegment;
|
|
105
111
|
Equals(obj: unknown): boolean;
|
|
106
112
|
GetHashCode(): int;
|
|
@@ -120,6 +126,8 @@ export const ContentRangeHeaderValue: {
|
|
|
120
126
|
export type ContentRangeHeaderValue = ContentRangeHeaderValue$instance;
|
|
121
127
|
|
|
122
128
|
export interface CookieHeaderValue$instance {
|
|
129
|
+
readonly __tsonic_type_Microsoft_Net_Http_Headers_CookieHeaderValue: never;
|
|
130
|
+
|
|
123
131
|
Name: StringSegment;
|
|
124
132
|
Value: StringSegment;
|
|
125
133
|
Equals(obj: unknown): boolean;
|
|
@@ -132,17 +140,19 @@ export const CookieHeaderValue: {
|
|
|
132
140
|
new(name: StringSegment): CookieHeaderValue;
|
|
133
141
|
new(name: StringSegment, value: StringSegment): CookieHeaderValue;
|
|
134
142
|
Parse(input: StringSegment): CookieHeaderValue;
|
|
135
|
-
ParseList(inputs:
|
|
136
|
-
ParseStrictList(inputs:
|
|
143
|
+
ParseList(inputs: IList_1<System_Internal.String>): IList_1<CookieHeaderValue>;
|
|
144
|
+
ParseStrictList(inputs: IList_1<System_Internal.String>): IList_1<CookieHeaderValue>;
|
|
137
145
|
TryParse(input: StringSegment, parsedValue: CookieHeaderValue): boolean;
|
|
138
|
-
TryParseList(inputs:
|
|
139
|
-
TryParseStrictList(inputs:
|
|
146
|
+
TryParseList(inputs: IList_1<System_Internal.String>, parsedValues: IList_1<CookieHeaderValue>): boolean;
|
|
147
|
+
TryParseStrictList(inputs: IList_1<System_Internal.String>, parsedValues: IList_1<CookieHeaderValue>): boolean;
|
|
140
148
|
};
|
|
141
149
|
|
|
142
150
|
|
|
143
151
|
export type CookieHeaderValue = CookieHeaderValue$instance;
|
|
144
152
|
|
|
145
153
|
export interface EntityTagHeaderValue$instance {
|
|
154
|
+
readonly __tsonic_type_Microsoft_Net_Http_Headers_EntityTagHeaderValue: never;
|
|
155
|
+
|
|
146
156
|
readonly IsWeak: boolean;
|
|
147
157
|
readonly Tag: StringSegment;
|
|
148
158
|
Compare(other: EntityTagHeaderValue, useStrongComparison: boolean): boolean;
|
|
@@ -157,29 +167,31 @@ export const EntityTagHeaderValue: {
|
|
|
157
167
|
new(tag: StringSegment, isWeak: boolean): EntityTagHeaderValue;
|
|
158
168
|
readonly Any: EntityTagHeaderValue;
|
|
159
169
|
Parse(input: StringSegment): EntityTagHeaderValue;
|
|
160
|
-
ParseList(inputs:
|
|
161
|
-
ParseStrictList(inputs:
|
|
170
|
+
ParseList(inputs: IList_1<System_Internal.String>): IList_1<EntityTagHeaderValue>;
|
|
171
|
+
ParseStrictList(inputs: IList_1<System_Internal.String>): IList_1<EntityTagHeaderValue>;
|
|
162
172
|
TryParse(input: StringSegment, parsedValue: EntityTagHeaderValue): boolean;
|
|
163
|
-
TryParseList(inputs:
|
|
164
|
-
TryParseStrictList(inputs:
|
|
173
|
+
TryParseList(inputs: IList_1<System_Internal.String>, parsedValues: IList_1<EntityTagHeaderValue>): boolean;
|
|
174
|
+
TryParseStrictList(inputs: IList_1<System_Internal.String>, parsedValues: IList_1<EntityTagHeaderValue>): boolean;
|
|
165
175
|
};
|
|
166
176
|
|
|
167
177
|
|
|
168
178
|
export type EntityTagHeaderValue = EntityTagHeaderValue$instance;
|
|
169
179
|
|
|
170
180
|
export interface MediaTypeHeaderValue$instance {
|
|
181
|
+
readonly __tsonic_type_Microsoft_Net_Http_Headers_MediaTypeHeaderValue: never;
|
|
182
|
+
|
|
171
183
|
Boundary: StringSegment;
|
|
172
184
|
Charset: StringSegment;
|
|
173
185
|
get Encoding(): Encoding | undefined;
|
|
174
186
|
set Encoding(value: Encoding | undefined);
|
|
175
|
-
readonly Facets:
|
|
187
|
+
readonly Facets: IEnumerable_1<StringSegment>;
|
|
176
188
|
readonly IsReadOnly: boolean;
|
|
177
189
|
readonly MatchesAllSubTypes: boolean;
|
|
178
190
|
readonly MatchesAllSubTypesWithoutSuffix: boolean;
|
|
179
191
|
readonly MatchesAllTypes: boolean;
|
|
180
192
|
MediaType: StringSegment;
|
|
181
|
-
readonly Parameters:
|
|
182
|
-
Quality:
|
|
193
|
+
readonly Parameters: IList_1<NameValueHeaderValue>;
|
|
194
|
+
Quality: Nullable_1<System_Internal.Double>;
|
|
183
195
|
readonly SubType: StringSegment;
|
|
184
196
|
readonly SubTypeWithoutSuffix: StringSegment;
|
|
185
197
|
readonly Suffix: StringSegment;
|
|
@@ -198,17 +210,21 @@ export const MediaTypeHeaderValue: {
|
|
|
198
210
|
new(mediaType: StringSegment): MediaTypeHeaderValue;
|
|
199
211
|
new(mediaType: StringSegment, quality: double): MediaTypeHeaderValue;
|
|
200
212
|
Parse(input: StringSegment): MediaTypeHeaderValue;
|
|
201
|
-
ParseList(inputs:
|
|
202
|
-
ParseStrictList(inputs:
|
|
213
|
+
ParseList(inputs: IList_1<System_Internal.String>): IList_1<MediaTypeHeaderValue>;
|
|
214
|
+
ParseStrictList(inputs: IList_1<System_Internal.String>): IList_1<MediaTypeHeaderValue>;
|
|
203
215
|
TryParse(input: StringSegment, parsedValue: MediaTypeHeaderValue): boolean;
|
|
204
|
-
TryParseList(inputs:
|
|
205
|
-
TryParseStrictList(inputs:
|
|
216
|
+
TryParseList(inputs: IList_1<System_Internal.String>, parsedValues: IList_1<MediaTypeHeaderValue>): boolean;
|
|
217
|
+
TryParseStrictList(inputs: IList_1<System_Internal.String>, parsedValues: IList_1<MediaTypeHeaderValue>): boolean;
|
|
206
218
|
};
|
|
207
219
|
|
|
208
220
|
|
|
209
221
|
export type MediaTypeHeaderValue = MediaTypeHeaderValue$instance;
|
|
210
222
|
|
|
211
223
|
export interface MediaTypeHeaderValueComparer$instance {
|
|
224
|
+
readonly __tsonic_type_Microsoft_Net_Http_Headers_MediaTypeHeaderValueComparer: never;
|
|
225
|
+
|
|
226
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
227
|
+
|
|
212
228
|
Compare(mediaType1: MediaTypeHeaderValue, mediaType2: MediaTypeHeaderValue): int;
|
|
213
229
|
}
|
|
214
230
|
|
|
@@ -221,6 +237,8 @@ export const MediaTypeHeaderValueComparer: {
|
|
|
221
237
|
export type MediaTypeHeaderValueComparer = MediaTypeHeaderValueComparer$instance;
|
|
222
238
|
|
|
223
239
|
export interface NameValueHeaderValue$instance {
|
|
240
|
+
readonly __tsonic_type_Microsoft_Net_Http_Headers_NameValueHeaderValue: never;
|
|
241
|
+
|
|
224
242
|
readonly IsReadOnly: boolean;
|
|
225
243
|
readonly Name: StringSegment;
|
|
226
244
|
Value: StringSegment;
|
|
@@ -237,21 +255,23 @@ export interface NameValueHeaderValue$instance {
|
|
|
237
255
|
export const NameValueHeaderValue: {
|
|
238
256
|
new(name: StringSegment): NameValueHeaderValue;
|
|
239
257
|
new(name: StringSegment, value: StringSegment): NameValueHeaderValue;
|
|
240
|
-
Find(values:
|
|
258
|
+
Find(values: IList_1<NameValueHeaderValue>, name: StringSegment): NameValueHeaderValue | undefined;
|
|
241
259
|
Parse(input: StringSegment): NameValueHeaderValue;
|
|
242
|
-
ParseList(input:
|
|
243
|
-
ParseStrictList(input:
|
|
260
|
+
ParseList(input: IList_1<System_Internal.String>): IList_1<NameValueHeaderValue>;
|
|
261
|
+
ParseStrictList(input: IList_1<System_Internal.String>): IList_1<NameValueHeaderValue>;
|
|
244
262
|
TryParse(input: StringSegment, parsedValue: NameValueHeaderValue): boolean;
|
|
245
|
-
TryParseList(input:
|
|
246
|
-
TryParseStrictList(input:
|
|
263
|
+
TryParseList(input: IList_1<System_Internal.String>, parsedValues: IList_1<NameValueHeaderValue>): boolean;
|
|
264
|
+
TryParseStrictList(input: IList_1<System_Internal.String>, parsedValues: IList_1<NameValueHeaderValue>): boolean;
|
|
247
265
|
};
|
|
248
266
|
|
|
249
267
|
|
|
250
268
|
export type NameValueHeaderValue = NameValueHeaderValue$instance;
|
|
251
269
|
|
|
252
270
|
export interface RangeConditionHeaderValue$instance {
|
|
271
|
+
readonly __tsonic_type_Microsoft_Net_Http_Headers_RangeConditionHeaderValue: never;
|
|
272
|
+
|
|
253
273
|
readonly EntityTag: EntityTagHeaderValue | undefined;
|
|
254
|
-
readonly LastModified:
|
|
274
|
+
readonly LastModified: Nullable_1<DateTimeOffset>;
|
|
255
275
|
Equals(obj: unknown): boolean;
|
|
256
276
|
GetHashCode(): int;
|
|
257
277
|
ToString(): string;
|
|
@@ -270,7 +290,9 @@ export const RangeConditionHeaderValue: {
|
|
|
270
290
|
export type RangeConditionHeaderValue = RangeConditionHeaderValue$instance;
|
|
271
291
|
|
|
272
292
|
export interface RangeHeaderValue$instance {
|
|
273
|
-
readonly
|
|
293
|
+
readonly __tsonic_type_Microsoft_Net_Http_Headers_RangeHeaderValue: never;
|
|
294
|
+
|
|
295
|
+
readonly Ranges: ICollection_1<RangeItemHeaderValue>;
|
|
274
296
|
Unit: StringSegment;
|
|
275
297
|
Equals(obj: unknown): boolean;
|
|
276
298
|
GetHashCode(): int;
|
|
@@ -280,7 +302,7 @@ export interface RangeHeaderValue$instance {
|
|
|
280
302
|
|
|
281
303
|
export const RangeHeaderValue: {
|
|
282
304
|
new(): RangeHeaderValue;
|
|
283
|
-
new(from:
|
|
305
|
+
new(from: Nullable_1<System_Internal.Int64>, to: Nullable_1<System_Internal.Int64>): RangeHeaderValue;
|
|
284
306
|
Parse(input: StringSegment): RangeHeaderValue;
|
|
285
307
|
TryParse(input: StringSegment, parsedValue: RangeHeaderValue): boolean;
|
|
286
308
|
};
|
|
@@ -289,8 +311,10 @@ export const RangeHeaderValue: {
|
|
|
289
311
|
export type RangeHeaderValue = RangeHeaderValue$instance;
|
|
290
312
|
|
|
291
313
|
export interface RangeItemHeaderValue$instance {
|
|
292
|
-
readonly
|
|
293
|
-
|
|
314
|
+
readonly __tsonic_type_Microsoft_Net_Http_Headers_RangeItemHeaderValue: never;
|
|
315
|
+
|
|
316
|
+
readonly From: Nullable_1<System_Internal.Int64>;
|
|
317
|
+
readonly To: Nullable_1<System_Internal.Int64>;
|
|
294
318
|
Equals(obj: unknown): boolean;
|
|
295
319
|
GetHashCode(): int;
|
|
296
320
|
ToString(): string;
|
|
@@ -298,18 +322,20 @@ export interface RangeItemHeaderValue$instance {
|
|
|
298
322
|
|
|
299
323
|
|
|
300
324
|
export const RangeItemHeaderValue: {
|
|
301
|
-
new(from:
|
|
325
|
+
new(from: Nullable_1<System_Internal.Int64>, to: Nullable_1<System_Internal.Int64>): RangeItemHeaderValue;
|
|
302
326
|
};
|
|
303
327
|
|
|
304
328
|
|
|
305
329
|
export type RangeItemHeaderValue = RangeItemHeaderValue$instance;
|
|
306
330
|
|
|
307
331
|
export interface SetCookieHeaderValue$instance {
|
|
332
|
+
readonly __tsonic_type_Microsoft_Net_Http_Headers_SetCookieHeaderValue: never;
|
|
333
|
+
|
|
308
334
|
Domain: StringSegment;
|
|
309
|
-
Expires:
|
|
310
|
-
readonly Extensions:
|
|
335
|
+
Expires: Nullable_1<DateTimeOffset>;
|
|
336
|
+
readonly Extensions: IList_1<StringSegment>;
|
|
311
337
|
HttpOnly: boolean;
|
|
312
|
-
MaxAge:
|
|
338
|
+
MaxAge: Nullable_1<TimeSpan>;
|
|
313
339
|
Name: StringSegment;
|
|
314
340
|
Path: StringSegment;
|
|
315
341
|
SameSite: SameSiteMode;
|
|
@@ -326,18 +352,20 @@ export const SetCookieHeaderValue: {
|
|
|
326
352
|
new(name: StringSegment): SetCookieHeaderValue;
|
|
327
353
|
new(name: StringSegment, value: StringSegment): SetCookieHeaderValue;
|
|
328
354
|
Parse(input: StringSegment): SetCookieHeaderValue;
|
|
329
|
-
ParseList(inputs:
|
|
330
|
-
ParseStrictList(inputs:
|
|
355
|
+
ParseList(inputs: IList_1<System_Internal.String>): IList_1<SetCookieHeaderValue>;
|
|
356
|
+
ParseStrictList(inputs: IList_1<System_Internal.String>): IList_1<SetCookieHeaderValue>;
|
|
331
357
|
TryParse(input: StringSegment, parsedValue: SetCookieHeaderValue): boolean;
|
|
332
|
-
TryParseList(inputs:
|
|
333
|
-
TryParseStrictList(inputs:
|
|
358
|
+
TryParseList(inputs: IList_1<System_Internal.String>, parsedValues: IList_1<SetCookieHeaderValue>): boolean;
|
|
359
|
+
TryParseStrictList(inputs: IList_1<System_Internal.String>, parsedValues: IList_1<SetCookieHeaderValue>): boolean;
|
|
334
360
|
};
|
|
335
361
|
|
|
336
362
|
|
|
337
363
|
export type SetCookieHeaderValue = SetCookieHeaderValue$instance;
|
|
338
364
|
|
|
339
365
|
export interface StringWithQualityHeaderValue$instance {
|
|
340
|
-
readonly
|
|
366
|
+
readonly __tsonic_type_Microsoft_Net_Http_Headers_StringWithQualityHeaderValue: never;
|
|
367
|
+
|
|
368
|
+
readonly Quality: Nullable_1<System_Internal.Double>;
|
|
341
369
|
readonly Value: StringSegment;
|
|
342
370
|
Equals(obj: unknown): boolean;
|
|
343
371
|
GetHashCode(): int;
|
|
@@ -349,17 +377,21 @@ export const StringWithQualityHeaderValue: {
|
|
|
349
377
|
new(value: StringSegment): StringWithQualityHeaderValue;
|
|
350
378
|
new(value: StringSegment, quality: double): StringWithQualityHeaderValue;
|
|
351
379
|
Parse(input: StringSegment): StringWithQualityHeaderValue;
|
|
352
|
-
ParseList(input:
|
|
353
|
-
ParseStrictList(input:
|
|
380
|
+
ParseList(input: IList_1<System_Internal.String>): IList_1<StringWithQualityHeaderValue>;
|
|
381
|
+
ParseStrictList(input: IList_1<System_Internal.String>): IList_1<StringWithQualityHeaderValue>;
|
|
354
382
|
TryParse(input: StringSegment, parsedValue: StringWithQualityHeaderValue): boolean;
|
|
355
|
-
TryParseList(input:
|
|
356
|
-
TryParseStrictList(input:
|
|
383
|
+
TryParseList(input: IList_1<System_Internal.String>, parsedValues: IList_1<StringWithQualityHeaderValue>): boolean;
|
|
384
|
+
TryParseStrictList(input: IList_1<System_Internal.String>, parsedValues: IList_1<StringWithQualityHeaderValue>): boolean;
|
|
357
385
|
};
|
|
358
386
|
|
|
359
387
|
|
|
360
388
|
export type StringWithQualityHeaderValue = StringWithQualityHeaderValue$instance;
|
|
361
389
|
|
|
362
390
|
export interface StringWithQualityHeaderValueComparer$instance {
|
|
391
|
+
readonly __tsonic_type_Microsoft_Net_Http_Headers_StringWithQualityHeaderValueComparer: never;
|
|
392
|
+
|
|
393
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
394
|
+
|
|
363
395
|
Compare(stringWithQuality1: StringWithQualityHeaderValue, stringWithQuality2: StringWithQualityHeaderValue): int;
|
|
364
396
|
}
|
|
365
397
|
|
|
@@ -500,7 +532,7 @@ export abstract class HeaderUtilities$instance {
|
|
|
500
532
|
static TryParseDate(input: StringSegment, result: DateTimeOffset): boolean;
|
|
501
533
|
static TryParseNonNegativeInt32(value: StringSegment, result: int): boolean;
|
|
502
534
|
static TryParseNonNegativeInt64(value: StringSegment, result: long): boolean;
|
|
503
|
-
static TryParseSeconds(headerValues: StringValues, targetValue: string, value:
|
|
535
|
+
static TryParseSeconds(headerValues: StringValues, targetValue: string, value: Nullable_1<TimeSpan>): boolean;
|
|
504
536
|
static UnescapeAsQuotedString(input: StringSegment): StringSegment;
|
|
505
537
|
}
|
|
506
538
|
|
|
@@ -9,11 +9,11 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
9
9
|
import type { ptr } from "@tsonic/core/types.js";
|
|
10
10
|
|
|
11
11
|
// Import types from other namespaces
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import type {
|
|
15
|
-
import * as
|
|
16
|
-
import type {
|
|
12
|
+
import type { BigInteger } from "@tsonic/dotnet/System.Numerics/internal/index.js";
|
|
13
|
+
import * as System_Runtime_Serialization_Internal from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
14
|
+
import type { ISerializable, SerializationInfo, StreamingContext } from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
15
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
16
|
+
import type { Boolean as ClrBoolean, Byte, Char, DateTimeOffset, Decimal, Double, Enum, Exception, Half, IComparable, IConvertible, IFormattable, Int32, Int64, ISpanFormattable, Nullable_1, Object as ClrObject, ReadOnlyMemory_1, ReadOnlySpan_1, Single, Span_1, String as ClrString, UInt32, UInt64, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
17
17
|
|
|
18
18
|
export enum CborConformanceMode {
|
|
19
19
|
Lax = 0,
|
|
@@ -77,6 +77,10 @@ export enum CborTag {
|
|
|
77
77
|
|
|
78
78
|
|
|
79
79
|
export interface CborContentException$instance extends Exception {
|
|
80
|
+
readonly __tsonic_type_System_Formats_Cbor_CborContentException: never;
|
|
81
|
+
|
|
82
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
83
|
+
|
|
80
84
|
}
|
|
81
85
|
|
|
82
86
|
|
|
@@ -89,6 +93,8 @@ export const CborContentException: {
|
|
|
89
93
|
export type CborContentException = CborContentException$instance;
|
|
90
94
|
|
|
91
95
|
export interface CborReader$instance {
|
|
96
|
+
readonly __tsonic_type_System_Formats_Cbor_CborReader: never;
|
|
97
|
+
|
|
92
98
|
readonly AllowMultipleRootLevelValues: boolean;
|
|
93
99
|
readonly BytesRemaining: int;
|
|
94
100
|
readonly ConformanceMode: CborConformanceMode;
|
|
@@ -101,10 +107,10 @@ export interface CborReader$instance {
|
|
|
101
107
|
ReadCborNegativeIntegerRepresentation(): ulong;
|
|
102
108
|
ReadDateTimeOffset(): DateTimeOffset;
|
|
103
109
|
ReadDecimal(): decimal;
|
|
104
|
-
ReadDefiniteLengthByteString():
|
|
105
|
-
ReadDefiniteLengthTextStringBytes():
|
|
110
|
+
ReadDefiniteLengthByteString(): ReadOnlyMemory_1<System_Internal.Byte>;
|
|
111
|
+
ReadDefiniteLengthTextStringBytes(): ReadOnlyMemory_1<System_Internal.Byte>;
|
|
106
112
|
ReadDouble(): double;
|
|
107
|
-
ReadEncodedValue(disableConformanceModeChecks?: boolean):
|
|
113
|
+
ReadEncodedValue(disableConformanceModeChecks?: boolean): ReadOnlyMemory_1<System_Internal.Byte>;
|
|
108
114
|
ReadEndArray(): void;
|
|
109
115
|
ReadEndIndefiniteLengthByteString(): void;
|
|
110
116
|
ReadEndIndefiniteLengthTextString(): void;
|
|
@@ -115,31 +121,33 @@ export interface CborReader$instance {
|
|
|
115
121
|
ReadNull(): void;
|
|
116
122
|
ReadSimpleValue(): CborSimpleValue;
|
|
117
123
|
ReadSingle(): float;
|
|
118
|
-
ReadStartArray():
|
|
124
|
+
ReadStartArray(): Nullable_1<System_Internal.Int32>;
|
|
119
125
|
ReadStartIndefiniteLengthByteString(): void;
|
|
120
126
|
ReadStartIndefiniteLengthTextString(): void;
|
|
121
|
-
ReadStartMap():
|
|
127
|
+
ReadStartMap(): Nullable_1<System_Internal.Int32>;
|
|
122
128
|
ReadTag(): CborTag;
|
|
123
129
|
ReadTextString(): string;
|
|
124
130
|
ReadUInt32(): uint;
|
|
125
131
|
ReadUInt64(): ulong;
|
|
126
132
|
ReadUnixTimeSeconds(): DateTimeOffset;
|
|
127
|
-
Reset(data:
|
|
133
|
+
Reset(data: ReadOnlyMemory_1<System_Internal.Byte>): void;
|
|
128
134
|
SkipToParent(disableConformanceModeChecks?: boolean): void;
|
|
129
135
|
SkipValue(disableConformanceModeChecks?: boolean): void;
|
|
130
|
-
TryReadByteString(destination:
|
|
131
|
-
TryReadTextString(destination:
|
|
136
|
+
TryReadByteString(destination: Span_1<System_Internal.Byte>, bytesWritten: int): boolean;
|
|
137
|
+
TryReadTextString(destination: Span_1<System_Internal.Char>, charsWritten: int): boolean;
|
|
132
138
|
}
|
|
133
139
|
|
|
134
140
|
|
|
135
141
|
export const CborReader: {
|
|
136
|
-
new(data:
|
|
142
|
+
new(data: ReadOnlyMemory_1<System_Internal.Byte>, conformanceMode: CborConformanceMode, allowMultipleRootLevelValues: boolean): CborReader;
|
|
137
143
|
};
|
|
138
144
|
|
|
139
145
|
|
|
140
146
|
export type CborReader = CborReader$instance;
|
|
141
147
|
|
|
142
148
|
export interface CborWriter$instance {
|
|
149
|
+
readonly __tsonic_type_System_Formats_Cbor_CborWriter: never;
|
|
150
|
+
|
|
143
151
|
readonly AllowMultipleRootLevelValues: boolean;
|
|
144
152
|
readonly BytesWritten: int;
|
|
145
153
|
readonly ConformanceMode: CborConformanceMode;
|
|
@@ -147,18 +155,18 @@ export interface CborWriter$instance {
|
|
|
147
155
|
readonly CurrentDepth: int;
|
|
148
156
|
readonly IsWriteCompleted: boolean;
|
|
149
157
|
Encode(): byte[];
|
|
150
|
-
Encode(destination:
|
|
158
|
+
Encode(destination: Span_1<System_Internal.Byte>): int;
|
|
151
159
|
Reset(): void;
|
|
152
|
-
TryEncode(destination:
|
|
160
|
+
TryEncode(destination: Span_1<System_Internal.Byte>, bytesWritten: int): boolean;
|
|
153
161
|
WriteBigInteger(value: BigInteger): void;
|
|
154
162
|
WriteBoolean(value: boolean): void;
|
|
155
163
|
WriteByteString(value: byte[]): void;
|
|
156
|
-
WriteByteString(value:
|
|
164
|
+
WriteByteString(value: ReadOnlySpan_1<System_Internal.Byte>): void;
|
|
157
165
|
WriteCborNegativeIntegerRepresentation(value: ulong): void;
|
|
158
166
|
WriteDateTimeOffset(value: DateTimeOffset): void;
|
|
159
167
|
WriteDecimal(value: decimal): void;
|
|
160
168
|
WriteDouble(value: double): void;
|
|
161
|
-
WriteEncodedValue(encodedValue:
|
|
169
|
+
WriteEncodedValue(encodedValue: ReadOnlySpan_1<System_Internal.Byte>): void;
|
|
162
170
|
WriteEndArray(): void;
|
|
163
171
|
WriteEndIndefiniteLengthByteString(): void;
|
|
164
172
|
WriteEndIndefiniteLengthTextString(): void;
|
|
@@ -169,13 +177,13 @@ export interface CborWriter$instance {
|
|
|
169
177
|
WriteNull(): void;
|
|
170
178
|
WriteSimpleValue(value: CborSimpleValue): void;
|
|
171
179
|
WriteSingle(value: float): void;
|
|
172
|
-
WriteStartArray(definiteLength:
|
|
180
|
+
WriteStartArray(definiteLength: Nullable_1<System_Internal.Int32>): void;
|
|
173
181
|
WriteStartIndefiniteLengthByteString(): void;
|
|
174
182
|
WriteStartIndefiniteLengthTextString(): void;
|
|
175
|
-
WriteStartMap(definiteLength:
|
|
183
|
+
WriteStartMap(definiteLength: Nullable_1<System_Internal.Int32>): void;
|
|
176
184
|
WriteTag(tag: CborTag): void;
|
|
177
185
|
WriteTextString(value: string): void;
|
|
178
|
-
WriteTextString(value:
|
|
186
|
+
WriteTextString(value: ReadOnlySpan_1<System_Internal.Char>): void;
|
|
179
187
|
WriteUInt32(value: uint): void;
|
|
180
188
|
WriteUInt64(value: ulong): void;
|
|
181
189
|
WriteUnixTimeSeconds(seconds: long): void;
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint128, half, float, double, decimal, nint, nuint, char } from '@tsonic/core/types.js';
|
|
7
7
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import type {
|
|
9
|
+
import type { ClaimsPrincipal } from "@tsonic/dotnet/System.Security.Claims/internal/index.js";
|
|
10
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
11
|
+
import type { Object as ClrObject, String as ClrString } from "@tsonic/dotnet/System/internal/index.js";
|
|
12
12
|
|
|
13
13
|
export abstract class PrincipalExtensions$instance {
|
|
14
14
|
static FindFirstValue(principal: ClaimsPrincipal, claimType: string): string | undefined;
|
|
@@ -11,3 +11,6 @@ import type { ClaimsPrincipal } from '@tsonic/dotnet/System.Security.Claims.js';
|
|
|
11
11
|
|
|
12
12
|
// Public API exports (curated - no internal $instance/$views leakage)
|
|
13
13
|
export { PrincipalExtensions$instance as PrincipalExtensions } from './System.Security.Claims/internal/index.js';
|
|
14
|
+
// Extension methods (C# using semantics)
|
|
15
|
+
export type { ExtensionMethods_System_Security_Claims as ExtensionMethods } from './__internal/extensions/index.js';
|
|
16
|
+
|