@tsonic/aspnetcore 10.0.6 → 10.0.11
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.Authentication/internal/index.d.ts +2 -2
- package/Microsoft.AspNetCore.Authorization.Infrastructure/internal/index.d.ts +4 -4
- package/Microsoft.AspNetCore.Components/internal/index.d.ts +1 -2
- package/Microsoft.AspNetCore.Components.Forms/internal/index.d.ts +4 -4
- package/Microsoft.AspNetCore.Components.RenderTree/internal/index.d.ts +1 -2
- package/Microsoft.AspNetCore.Http/internal/index.d.ts +11 -21
- package/Microsoft.AspNetCore.Http.Features/internal/index.d.ts +1 -2
- package/Microsoft.AspNetCore.Http.HttpResults/internal/index.d.ts +2 -2
- package/Microsoft.AspNetCore.Identity/internal/index.d.ts +1 -2
- package/Microsoft.AspNetCore.Mvc.Controllers/internal/index.d.ts +1 -1
- package/Microsoft.AspNetCore.Mvc.Diagnostics/internal/index.d.ts +51 -102
- package/Microsoft.AspNetCore.Mvc.Infrastructure/internal/index.d.ts +11 -11
- package/Microsoft.AspNetCore.Mvc.ModelBinding/internal/index.d.ts +4 -6
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Metadata/internal/index.d.ts +1 -1
- package/Microsoft.AspNetCore.Mvc.Razor.TagHelpers/internal/index.d.ts +1 -1
- package/Microsoft.AspNetCore.Mvc.ViewComponents/internal/index.d.ts +1 -1
- package/Microsoft.AspNetCore.Mvc.ViewFeatures/internal/index.d.ts +4 -7
- package/Microsoft.AspNetCore.Razor.TagHelpers/internal/index.d.ts +2 -4
- package/Microsoft.AspNetCore.Routing/internal/index.d.ts +2 -4
- package/Microsoft.AspNetCore.Routing.Matching/internal/index.d.ts +1 -2
- package/Microsoft.AspNetCore.SignalR/internal/index.d.ts +1 -2
- package/package.json +4 -4
|
@@ -289,7 +289,7 @@ export interface AuthenticationHandler_1$instance<TOptions extends Authenticatio
|
|
|
289
289
|
readonly __tsonic_iface_Microsoft_AspNetCore_Authentication_IAuthenticationHandler: never;
|
|
290
290
|
|
|
291
291
|
readonly ClaimsIssuer: string;
|
|
292
|
-
Events:
|
|
292
|
+
Events: CookieAuthenticationEvents | unknown;
|
|
293
293
|
Options: TOptions;
|
|
294
294
|
Scheme: AuthenticationScheme;
|
|
295
295
|
AuthenticateAsync(): Task_1<AuthenticateResult>;
|
|
@@ -452,7 +452,7 @@ export interface AuthenticationSchemeOptions$instance {
|
|
|
452
452
|
|
|
453
453
|
get ClaimsIssuer(): string | undefined;
|
|
454
454
|
set ClaimsIssuer(value: string | undefined);
|
|
455
|
-
Events:
|
|
455
|
+
Events: CookieAuthenticationEvents | unknown;
|
|
456
456
|
get EventsType(): Type | undefined;
|
|
457
457
|
set EventsType(value: Type | undefined);
|
|
458
458
|
get ForwardAuthenticate(): string | undefined;
|
|
@@ -39,7 +39,7 @@ export interface __AssertionRequirement$views {
|
|
|
39
39
|
export type AssertionRequirement = AssertionRequirement$instance & __AssertionRequirement$views;
|
|
40
40
|
|
|
41
41
|
|
|
42
|
-
export interface ClaimsAuthorizationRequirement$instance extends AuthorizationHandler_1<ClaimsAuthorizationRequirement>, IAuthorizationRequirement
|
|
42
|
+
export interface ClaimsAuthorizationRequirement$instance extends AuthorizationHandler_1<ClaimsAuthorizationRequirement>, IAuthorizationRequirement, Microsoft_AspNetCore_Authorization_Internal.IAuthorizationRequirement$instance {
|
|
43
43
|
readonly __tsonic_type_Microsoft_AspNetCore_Authorization_Infrastructure_ClaimsAuthorizationRequirement: never;
|
|
44
44
|
|
|
45
45
|
readonly __tsonic_iface_Microsoft_AspNetCore_Authorization_IAuthorizationHandler: never;
|
|
@@ -64,7 +64,7 @@ export interface __ClaimsAuthorizationRequirement$views {
|
|
|
64
64
|
export type ClaimsAuthorizationRequirement = ClaimsAuthorizationRequirement$instance & __ClaimsAuthorizationRequirement$views;
|
|
65
65
|
|
|
66
66
|
|
|
67
|
-
export interface DenyAnonymousAuthorizationRequirement$instance extends AuthorizationHandler_1<DenyAnonymousAuthorizationRequirement>, IAuthorizationRequirement
|
|
67
|
+
export interface DenyAnonymousAuthorizationRequirement$instance extends AuthorizationHandler_1<DenyAnonymousAuthorizationRequirement>, IAuthorizationRequirement, Microsoft_AspNetCore_Authorization_Internal.IAuthorizationRequirement$instance {
|
|
68
68
|
readonly __tsonic_type_Microsoft_AspNetCore_Authorization_Infrastructure_DenyAnonymousAuthorizationRequirement: never;
|
|
69
69
|
|
|
70
70
|
readonly __tsonic_iface_Microsoft_AspNetCore_Authorization_IAuthorizationHandler: never;
|
|
@@ -87,7 +87,7 @@ export interface __DenyAnonymousAuthorizationRequirement$views {
|
|
|
87
87
|
export type DenyAnonymousAuthorizationRequirement = DenyAnonymousAuthorizationRequirement$instance & __DenyAnonymousAuthorizationRequirement$views;
|
|
88
88
|
|
|
89
89
|
|
|
90
|
-
export interface NameAuthorizationRequirement$instance extends AuthorizationHandler_1<NameAuthorizationRequirement>, IAuthorizationRequirement
|
|
90
|
+
export interface NameAuthorizationRequirement$instance extends AuthorizationHandler_1<NameAuthorizationRequirement>, IAuthorizationRequirement, Microsoft_AspNetCore_Authorization_Internal.IAuthorizationRequirement$instance {
|
|
91
91
|
readonly __tsonic_type_Microsoft_AspNetCore_Authorization_Infrastructure_NameAuthorizationRequirement: never;
|
|
92
92
|
|
|
93
93
|
readonly __tsonic_iface_Microsoft_AspNetCore_Authorization_IAuthorizationHandler: never;
|
|
@@ -150,7 +150,7 @@ export interface __PassThroughAuthorizationHandler$views {
|
|
|
150
150
|
export type PassThroughAuthorizationHandler = PassThroughAuthorizationHandler$instance & __PassThroughAuthorizationHandler$views;
|
|
151
151
|
|
|
152
152
|
|
|
153
|
-
export interface RolesAuthorizationRequirement$instance extends AuthorizationHandler_1<RolesAuthorizationRequirement>, IAuthorizationRequirement
|
|
153
|
+
export interface RolesAuthorizationRequirement$instance extends AuthorizationHandler_1<RolesAuthorizationRequirement>, IAuthorizationRequirement, Microsoft_AspNetCore_Authorization_Internal.IAuthorizationRequirement$instance {
|
|
154
154
|
readonly __tsonic_type_Microsoft_AspNetCore_Authorization_Infrastructure_RolesAuthorizationRequirement: never;
|
|
155
155
|
|
|
156
156
|
readonly __tsonic_iface_Microsoft_AspNetCore_Authorization_IAuthorizationHandler: never;
|
|
@@ -1043,7 +1043,6 @@ export interface ResourceAssetCollection$instance {
|
|
|
1043
1043
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
1044
1044
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1045
1045
|
|
|
1046
|
-
readonly [key: string]: string;
|
|
1047
1046
|
IsContentSpecificUrl(path: string): boolean;
|
|
1048
1047
|
}
|
|
1049
1048
|
|
|
@@ -1054,7 +1053,7 @@ export const ResourceAssetCollection: {
|
|
|
1054
1053
|
};
|
|
1055
1054
|
|
|
1056
1055
|
|
|
1057
|
-
export type ResourceAssetCollection = ResourceAssetCollection$instance;
|
|
1056
|
+
export type ResourceAssetCollection = ResourceAssetCollection$instance & { readonly [key: string]: string; };
|
|
1058
1057
|
|
|
1059
1058
|
export interface ResourceAssetProperty$instance {
|
|
1060
1059
|
readonly __tsonic_type_Microsoft_AspNetCore_Components_ResourceAssetProperty: never;
|
|
@@ -378,7 +378,7 @@ export interface __InputBase_1$views<TValue> {
|
|
|
378
378
|
export type InputBase_1<TValue> = InputBase_1$instance<TValue> & __InputBase_1$views<TValue>;
|
|
379
379
|
|
|
380
380
|
|
|
381
|
-
export interface InputCheckbox$instance extends InputBase_1$instance<System_Internal.Boolean
|
|
381
|
+
export interface InputCheckbox$instance extends InputBase_1$instance<System_Internal.Boolean>, System_Internal.IDisposable {
|
|
382
382
|
readonly __tsonic_type_Microsoft_AspNetCore_Components_Forms_InputCheckbox: never;
|
|
383
383
|
|
|
384
384
|
readonly __tsonic_iface_Microsoft_AspNetCore_Components_IComponent: never;
|
|
@@ -499,7 +499,7 @@ export const InputFileChangeEventArgs: {
|
|
|
499
499
|
|
|
500
500
|
export type InputFileChangeEventArgs = InputFileChangeEventArgs$instance;
|
|
501
501
|
|
|
502
|
-
export interface InputHidden$instance extends InputBase_1$instance<System_Internal.String
|
|
502
|
+
export interface InputHidden$instance extends InputBase_1$instance<System_Internal.String>, System_Internal.IDisposable {
|
|
503
503
|
readonly __tsonic_type_Microsoft_AspNetCore_Components_Forms_InputHidden: never;
|
|
504
504
|
|
|
505
505
|
readonly __tsonic_iface_Microsoft_AspNetCore_Components_IComponent: never;
|
|
@@ -677,7 +677,7 @@ export interface __InputSelect_1$views<TValue> {
|
|
|
677
677
|
export type InputSelect_1<TValue> = InputSelect_1$instance<TValue> & __InputSelect_1$views<TValue>;
|
|
678
678
|
|
|
679
679
|
|
|
680
|
-
export interface InputText$instance extends InputBase_1$instance<System_Internal.String
|
|
680
|
+
export interface InputText$instance extends InputBase_1$instance<System_Internal.String>, System_Internal.IDisposable {
|
|
681
681
|
readonly __tsonic_type_Microsoft_AspNetCore_Components_Forms_InputText: never;
|
|
682
682
|
|
|
683
683
|
readonly __tsonic_iface_Microsoft_AspNetCore_Components_IComponent: never;
|
|
@@ -709,7 +709,7 @@ export interface __InputText$views {
|
|
|
709
709
|
export type InputText = InputText$instance & __InputText$views;
|
|
710
710
|
|
|
711
711
|
|
|
712
|
-
export interface InputTextArea$instance extends InputBase_1$instance<System_Internal.String
|
|
712
|
+
export interface InputTextArea$instance extends InputBase_1$instance<System_Internal.String>, System_Internal.IDisposable {
|
|
713
713
|
readonly __tsonic_type_Microsoft_AspNetCore_Components_Forms_InputTextArea: never;
|
|
714
714
|
|
|
715
715
|
readonly __tsonic_iface_Microsoft_AspNetCore_Components_IComponent: never;
|
|
@@ -70,7 +70,6 @@ export interface ArrayBuilderSegment_1$instance<T> {
|
|
|
70
70
|
|
|
71
71
|
readonly Array: T[];
|
|
72
72
|
readonly Count: int;
|
|
73
|
-
readonly [index: number]: T;
|
|
74
73
|
readonly Offset: int;
|
|
75
74
|
}
|
|
76
75
|
|
|
@@ -80,7 +79,7 @@ export const ArrayBuilderSegment_1: {
|
|
|
80
79
|
};
|
|
81
80
|
|
|
82
81
|
|
|
83
|
-
export type ArrayBuilderSegment_1<T> = ArrayBuilderSegment_1$instance<T
|
|
82
|
+
export type ArrayBuilderSegment_1<T> = ArrayBuilderSegment_1$instance<T> & { readonly [index: number]: T; };
|
|
84
83
|
|
|
85
84
|
export interface ArrayRange_1$instance<T> {
|
|
86
85
|
readonly __tsonic_type_Microsoft_AspNetCore_Components_RenderTree_ArrayRange_1: never;
|
|
@@ -111,7 +111,6 @@ export interface IFormCollection$instance extends IEnumerable_1<KeyValuePair_2<S
|
|
|
111
111
|
|
|
112
112
|
readonly Count: int;
|
|
113
113
|
readonly Keys: ICollection_1<System_Internal.String>;
|
|
114
|
-
readonly [key: string]: StringValues;
|
|
115
114
|
readonly Files: IFormFileCollection;
|
|
116
115
|
ContainsKey(key: string): boolean;
|
|
117
116
|
TryGetValue(key: string, value: StringValues): boolean;
|
|
@@ -120,7 +119,7 @@ export interface IFormCollection$instance extends IEnumerable_1<KeyValuePair_2<S
|
|
|
120
119
|
|
|
121
120
|
export interface IFormCollection$instance extends System_Collections_Generic_Internal.IEnumerable_1<KeyValuePair_2<System_Internal.String, StringValues>> {}
|
|
122
121
|
|
|
123
|
-
export type IFormCollection = IFormCollection$instance;
|
|
122
|
+
export type IFormCollection = IFormCollection$instance & { readonly [key: string]: StringValues; };
|
|
124
123
|
|
|
125
124
|
export interface IFormFile$instance {
|
|
126
125
|
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IFormFile: never;
|
|
@@ -142,7 +141,6 @@ export type IFormFile = IFormFile$instance;
|
|
|
142
141
|
export interface IFormFileCollection$instance extends IReadOnlyList_1<IFormFile>, IEnumerable_1<IFormFile>, IEnumerable, IReadOnlyCollection_1<IFormFile> {
|
|
143
142
|
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IFormFileCollection: never;
|
|
144
143
|
|
|
145
|
-
readonly [name: string]: IFormFile | undefined;
|
|
146
144
|
GetFile(name: string): IFormFile | undefined;
|
|
147
145
|
GetFiles(name: string): IReadOnlyList_1<IFormFile>;
|
|
148
146
|
}
|
|
@@ -150,12 +148,11 @@ export interface IFormFileCollection$instance extends IReadOnlyList_1<IFormFile>
|
|
|
150
148
|
|
|
151
149
|
export interface IFormFileCollection$instance extends System_Collections_Generic_Internal.IEnumerable_1<IFormFile>, System_Collections_Generic_Internal.IReadOnlyCollection_1<IFormFile>, System_Collections_Generic_Internal.IReadOnlyList_1<IFormFile> {}
|
|
152
150
|
|
|
153
|
-
export type IFormFileCollection = IFormFileCollection$instance;
|
|
151
|
+
export type IFormFileCollection = IFormFileCollection$instance & { readonly [name: string]: IFormFile | undefined; };
|
|
154
152
|
|
|
155
153
|
export interface IHeaderDictionary$instance extends IDictionary_2<System_Internal.String, StringValues>, ICollection_1<KeyValuePair_2<System_Internal.String, StringValues>>, IEnumerable_1<KeyValuePair_2<System_Internal.String, StringValues>>, IEnumerable {
|
|
156
154
|
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IHeaderDictionary: never;
|
|
157
155
|
|
|
158
|
-
[key: string]: StringValues;
|
|
159
156
|
ContentLength: Nullable_1<System_Internal.Int64>;
|
|
160
157
|
Accept: StringValues;
|
|
161
158
|
AcceptCharset: StringValues;
|
|
@@ -251,7 +248,7 @@ export interface IHeaderDictionary$instance extends IDictionary_2<System_Interna
|
|
|
251
248
|
|
|
252
249
|
export interface IHeaderDictionary$instance extends System_Collections_Generic_Internal.ICollection_1<KeyValuePair_2<System_Internal.String, StringValues>>, System_Collections_Generic_Internal.IDictionary_2<System_Internal.String, StringValues>, System_Collections_Generic_Internal.IEnumerable_1<KeyValuePair_2<System_Internal.String, StringValues>> {}
|
|
253
250
|
|
|
254
|
-
export type IHeaderDictionary = IHeaderDictionary$instance;
|
|
251
|
+
export type IHeaderDictionary = IHeaderDictionary$instance & { [key: string]: StringValues; };
|
|
255
252
|
|
|
256
253
|
export interface IHttpContextAccessor$instance {
|
|
257
254
|
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IHttpContextAccessor: never;
|
|
@@ -326,7 +323,6 @@ export interface IQueryCollection$instance extends IEnumerable_1<KeyValuePair_2<
|
|
|
326
323
|
|
|
327
324
|
readonly Count: int;
|
|
328
325
|
readonly Keys: ICollection_1<System_Internal.String>;
|
|
329
|
-
readonly [key: string]: StringValues;
|
|
330
326
|
ContainsKey(key: string): boolean;
|
|
331
327
|
TryGetValue(key: string, value: StringValues): boolean;
|
|
332
328
|
}
|
|
@@ -334,14 +330,13 @@ export interface IQueryCollection$instance extends IEnumerable_1<KeyValuePair_2<
|
|
|
334
330
|
|
|
335
331
|
export interface IQueryCollection$instance extends System_Collections_Generic_Internal.IEnumerable_1<KeyValuePair_2<System_Internal.String, StringValues>> {}
|
|
336
332
|
|
|
337
|
-
export type IQueryCollection = IQueryCollection$instance;
|
|
333
|
+
export type IQueryCollection = IQueryCollection$instance & { readonly [key: string]: StringValues; };
|
|
338
334
|
|
|
339
335
|
export interface IRequestCookieCollection$instance extends IEnumerable_1<KeyValuePair_2<System_Internal.String, System_Internal.String>>, IEnumerable {
|
|
340
336
|
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IRequestCookieCollection: never;
|
|
341
337
|
|
|
342
338
|
readonly Count: int;
|
|
343
339
|
readonly Keys: ICollection_1<System_Internal.String>;
|
|
344
|
-
readonly [key: string]: string | undefined;
|
|
345
340
|
ContainsKey(key: string): boolean;
|
|
346
341
|
TryGetValue(key: string, value: string): boolean;
|
|
347
342
|
}
|
|
@@ -349,7 +344,7 @@ export interface IRequestCookieCollection$instance extends IEnumerable_1<KeyValu
|
|
|
349
344
|
|
|
350
345
|
export interface IRequestCookieCollection$instance extends System_Collections_Generic_Internal.IEnumerable_1<KeyValuePair_2<System_Internal.String, System_Internal.String>> {}
|
|
351
346
|
|
|
352
|
-
export type IRequestCookieCollection = IRequestCookieCollection$instance;
|
|
347
|
+
export type IRequestCookieCollection = IRequestCookieCollection$instance & { readonly [key: string]: string | undefined; };
|
|
353
348
|
|
|
354
349
|
export interface IResponseCookies$instance {
|
|
355
350
|
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IResponseCookies: never;
|
|
@@ -946,7 +941,6 @@ export interface EndpointMetadataCollection$instance {
|
|
|
946
941
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
947
942
|
|
|
948
943
|
readonly Count: int;
|
|
949
|
-
readonly [index: number]: unknown;
|
|
950
944
|
GetEnumerator(): EndpointMetadataCollection_Enumerator;
|
|
951
945
|
GetMetadata<T>(): T | undefined;
|
|
952
946
|
GetOrderedMetadata<T>(): IReadOnlyList_1<T>;
|
|
@@ -961,7 +955,7 @@ export const EndpointMetadataCollection: {
|
|
|
961
955
|
};
|
|
962
956
|
|
|
963
957
|
|
|
964
|
-
export type EndpointMetadataCollection = EndpointMetadataCollection$instance;
|
|
958
|
+
export type EndpointMetadataCollection = EndpointMetadataCollection$instance & { readonly [index: number]: unknown; };
|
|
965
959
|
|
|
966
960
|
export interface EndpointSummaryAttribute$instance extends Attribute, Microsoft_AspNetCore_Http_Metadata_Internal.IEndpointSummaryMetadata$instance {
|
|
967
961
|
readonly __tsonic_type_Microsoft_AspNetCore_Http_EndpointSummaryAttribute: never;
|
|
@@ -994,7 +988,6 @@ export interface FormCollection$instance {
|
|
|
994
988
|
|
|
995
989
|
readonly Count: int;
|
|
996
990
|
Files: IFormFileCollection;
|
|
997
|
-
readonly [key: string]: StringValues;
|
|
998
991
|
readonly Keys: ICollection_1<System_Internal.String>;
|
|
999
992
|
ContainsKey(key: string): boolean;
|
|
1000
993
|
GetEnumerator(): FormCollection_Enumerator;
|
|
@@ -1012,7 +1005,7 @@ export interface __FormCollection$views {
|
|
|
1012
1005
|
As_IFormCollection(): IFormCollection$instance;
|
|
1013
1006
|
}
|
|
1014
1007
|
|
|
1015
|
-
export type FormCollection = FormCollection$instance & __FormCollection$views;
|
|
1008
|
+
export type FormCollection = FormCollection$instance & __FormCollection$views & { readonly [key: string]: StringValues; };
|
|
1016
1009
|
|
|
1017
1010
|
|
|
1018
1011
|
export interface FormFile$instance {
|
|
@@ -1044,7 +1037,7 @@ export interface __FormFile$views {
|
|
|
1044
1037
|
export type FormFile = FormFile$instance & __FormFile$views;
|
|
1045
1038
|
|
|
1046
1039
|
|
|
1047
|
-
export interface FormFileCollection$instance extends List_1<IFormFile> {
|
|
1040
|
+
export interface FormFileCollection$instance extends List_1<IFormFile>, IFormFileCollection$instance, System_Collections_Generic_Internal.ICollection_1<IFormFile>, System_Collections_Generic_Internal.IList_1<IFormFile> {
|
|
1048
1041
|
readonly __tsonic_type_Microsoft_AspNetCore_Http_FormFileCollection: never;
|
|
1049
1042
|
|
|
1050
1043
|
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IFormFileCollection: never;
|
|
@@ -1057,7 +1050,6 @@ export interface FormFileCollection$instance extends List_1<IFormFile> {
|
|
|
1057
1050
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1058
1051
|
readonly __tsonic_iface_System_Collections_IList: never;
|
|
1059
1052
|
|
|
1060
|
-
readonly [name: string]: IFormFile | undefined;
|
|
1061
1053
|
GetFile(name: string): IFormFile | undefined;
|
|
1062
1054
|
GetFiles(name: string): IReadOnlyList_1<IFormFile>;
|
|
1063
1055
|
}
|
|
@@ -1072,7 +1064,7 @@ export interface __FormFileCollection$views {
|
|
|
1072
1064
|
As_IFormFileCollection(): IFormFileCollection$instance;
|
|
1073
1065
|
}
|
|
1074
1066
|
|
|
1075
|
-
export type FormFileCollection = FormFileCollection$instance & __FormFileCollection$views;
|
|
1067
|
+
export type FormFileCollection = FormFileCollection$instance & __FormFileCollection$views & { readonly [name: string]: IFormFile | undefined; };
|
|
1076
1068
|
|
|
1077
1069
|
|
|
1078
1070
|
export interface HeaderDictionary$instance extends IHeaderDictionary$instance {
|
|
@@ -1087,7 +1079,6 @@ export interface HeaderDictionary$instance extends IHeaderDictionary$instance {
|
|
|
1087
1079
|
ContentLength: Nullable_1<System_Internal.Int64>;
|
|
1088
1080
|
readonly Count: int;
|
|
1089
1081
|
IsReadOnly: boolean;
|
|
1090
|
-
[key: string]: StringValues;
|
|
1091
1082
|
readonly Keys: ICollection_1<System_Internal.String>;
|
|
1092
1083
|
readonly Values: ICollection_1<StringValues>;
|
|
1093
1084
|
Add(item: KeyValuePair_2<System_Internal.String, StringValues>): void;
|
|
@@ -1114,7 +1105,7 @@ export interface __HeaderDictionary$views {
|
|
|
1114
1105
|
As_IHeaderDictionary(): IHeaderDictionary$instance;
|
|
1115
1106
|
}
|
|
1116
1107
|
|
|
1117
|
-
export type HeaderDictionary = HeaderDictionary$instance & __HeaderDictionary$views;
|
|
1108
|
+
export type HeaderDictionary = HeaderDictionary$instance & __HeaderDictionary$views & { [key: string]: StringValues; };
|
|
1118
1109
|
|
|
1119
1110
|
|
|
1120
1111
|
export interface HttpContext$instance {
|
|
@@ -1335,7 +1326,6 @@ export interface QueryCollection$instance extends IQueryCollection$instance {
|
|
|
1335
1326
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1336
1327
|
|
|
1337
1328
|
readonly Count: int;
|
|
1338
|
-
readonly [key: string]: StringValues;
|
|
1339
1329
|
readonly Keys: ICollection_1<System_Internal.String>;
|
|
1340
1330
|
ContainsKey(key: string): boolean;
|
|
1341
1331
|
GetEnumerator(): QueryCollection_Enumerator;
|
|
@@ -1356,7 +1346,7 @@ export interface __QueryCollection$views {
|
|
|
1356
1346
|
As_IQueryCollection(): IQueryCollection$instance;
|
|
1357
1347
|
}
|
|
1358
1348
|
|
|
1359
|
-
export type QueryCollection = QueryCollection$instance & __QueryCollection$views;
|
|
1349
|
+
export type QueryCollection = QueryCollection$instance & __QueryCollection$views & { readonly [key: string]: StringValues; };
|
|
1360
1350
|
|
|
1361
1351
|
|
|
1362
1352
|
export interface RequestDelegateFactoryOptions$instance {
|
|
@@ -347,11 +347,10 @@ export type IRouteValuesFeature = IRouteValuesFeature$instance;
|
|
|
347
347
|
export interface IServerVariablesFeature$instance {
|
|
348
348
|
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Features_IServerVariablesFeature: never;
|
|
349
349
|
|
|
350
|
-
[variableName: string]: string | undefined;
|
|
351
350
|
}
|
|
352
351
|
|
|
353
352
|
|
|
354
|
-
export type IServerVariablesFeature = IServerVariablesFeature$instance;
|
|
353
|
+
export type IServerVariablesFeature = IServerVariablesFeature$instance & { [variableName: string]: string | undefined; };
|
|
355
354
|
|
|
356
355
|
export interface IServiceProvidersFeature$instance {
|
|
357
356
|
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Features_IServiceProvidersFeature: never;
|
|
@@ -786,7 +786,7 @@ export interface __PhysicalFileHttpResult$views {
|
|
|
786
786
|
export type PhysicalFileHttpResult = PhysicalFileHttpResult$instance & __PhysicalFileHttpResult$views;
|
|
787
787
|
|
|
788
788
|
|
|
789
|
-
export interface ProblemHttpResult$instance {
|
|
789
|
+
export interface ProblemHttpResult$instance extends Microsoft_AspNetCore_Http_Internal.IContentTypeHttpResult$instance, Microsoft_AspNetCore_Http_Internal.IResult$instance, Microsoft_AspNetCore_Http_Internal.IValueHttpResult_1$instance<ProblemDetails>, Microsoft_AspNetCore_Http_Metadata_Internal.IEndpointMetadataProvider$instance {
|
|
790
790
|
readonly __tsonic_type_Microsoft_AspNetCore_Http_HttpResults_ProblemHttpResult: never;
|
|
791
791
|
|
|
792
792
|
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IContentTypeHttpResult: never;
|
|
@@ -1286,7 +1286,7 @@ export interface __Utf8ContentHttpResult$views {
|
|
|
1286
1286
|
export type Utf8ContentHttpResult = Utf8ContentHttpResult$instance & __Utf8ContentHttpResult$views;
|
|
1287
1287
|
|
|
1288
1288
|
|
|
1289
|
-
export interface ValidationProblem$instance {
|
|
1289
|
+
export interface ValidationProblem$instance extends Microsoft_AspNetCore_Http_Internal.IContentTypeHttpResult$instance, Microsoft_AspNetCore_Http_Internal.IResult$instance, Microsoft_AspNetCore_Http_Internal.IValueHttpResult_1$instance<HttpValidationProblemDetails>, Microsoft_AspNetCore_Http_Metadata_Internal.IEndpointMetadataProvider$instance {
|
|
1290
1290
|
readonly __tsonic_type_Microsoft_AspNetCore_Http_HttpResults_ValidationProblem: never;
|
|
1291
1291
|
|
|
1292
1292
|
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IContentTypeHttpResult: never;
|
|
@@ -67,12 +67,11 @@ export interface ILookupProtectorKeyRing$instance {
|
|
|
67
67
|
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_ILookupProtectorKeyRing: never;
|
|
68
68
|
|
|
69
69
|
readonly CurrentKeyId: string;
|
|
70
|
-
readonly [keyId: string]: string;
|
|
71
70
|
GetAllKeyIds(): IEnumerable_1<System_Internal.String>;
|
|
72
71
|
}
|
|
73
72
|
|
|
74
73
|
|
|
75
|
-
export type ILookupProtectorKeyRing = ILookupProtectorKeyRing$instance;
|
|
74
|
+
export type ILookupProtectorKeyRing = ILookupProtectorKeyRing$instance & { readonly [keyId: string]: string; };
|
|
76
75
|
|
|
77
76
|
export interface IPasskeyHandler_1$instance<TUser> {
|
|
78
77
|
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IPasskeyHandler_1: never;
|
|
@@ -144,7 +144,7 @@ export const ControllerFeature: {
|
|
|
144
144
|
|
|
145
145
|
export type ControllerFeature = ControllerFeature$instance;
|
|
146
146
|
|
|
147
|
-
export interface ControllerFeatureProvider$instance extends IApplicationFeatureProvider {
|
|
147
|
+
export interface ControllerFeatureProvider$instance extends IApplicationFeatureProvider, Microsoft_AspNetCore_Mvc_ApplicationParts_Internal.IApplicationFeatureProvider_1$instance<ControllerFeature> {
|
|
148
148
|
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Controllers_ControllerFeatureProvider: never;
|
|
149
149
|
|
|
150
150
|
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationParts_IApplicationFeatureProvider: never;
|