@tsonic/aspnetcore 10.0.26 → 10.0.31

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.
Files changed (39) hide show
  1. package/Microsoft.AspNetCore.Authentication/internal/index.d.ts +9 -6
  2. package/Microsoft.AspNetCore.Authentication.BearerToken/internal/index.d.ts +1 -1
  3. package/Microsoft.AspNetCore.Authentication.Cookies/internal/index.d.ts +3 -2
  4. package/Microsoft.AspNetCore.Authentication.OAuth/internal/index.d.ts +1 -1
  5. package/Microsoft.AspNetCore.Builder/internal/index.d.ts +7 -5
  6. package/Microsoft.AspNetCore.Components.Forms/internal/index.d.ts +18 -9
  7. package/Microsoft.AspNetCore.Components.Server/internal/index.d.ts +2 -1
  8. package/Microsoft.AspNetCore.Cors.Infrastructure/internal/index.d.ts +4 -2
  9. package/Microsoft.AspNetCore.DataProtection.Repositories/internal/index.d.ts +2 -1
  10. package/Microsoft.AspNetCore.Http/internal/index.d.ts +20 -10
  11. package/Microsoft.AspNetCore.Http.Connections/internal/index.d.ts +2 -1
  12. package/Microsoft.AspNetCore.Http.Features/internal/index.d.ts +2 -1
  13. package/Microsoft.AspNetCore.Http.Headers/internal/index.d.ts +20 -10
  14. package/Microsoft.AspNetCore.Http.HttpResults/internal/index.d.ts +26 -13
  15. package/Microsoft.AspNetCore.Http.Timeouts/internal/index.d.ts +4 -2
  16. package/Microsoft.AspNetCore.HttpLogging/internal/index.d.ts +4 -2
  17. package/Microsoft.AspNetCore.HttpsPolicy/internal/index.d.ts +2 -1
  18. package/Microsoft.AspNetCore.Identity/internal/index.d.ts +2 -1
  19. package/Microsoft.AspNetCore.Identity.Data/internal/index.d.ts +2 -1
  20. package/Microsoft.AspNetCore.Mvc/internal/index.d.ts +27 -13
  21. package/Microsoft.AspNetCore.Mvc.ApplicationModels/internal/index.d.ts +4 -2
  22. package/Microsoft.AspNetCore.Mvc.ModelBinding.Metadata/internal/index.d.ts +8 -4
  23. package/Microsoft.AspNetCore.Mvc.ModelBinding.Validation/internal/index.d.ts +2 -1
  24. package/Microsoft.AspNetCore.Mvc.RazorPages/internal/index.d.ts +2 -1
  25. package/Microsoft.AspNetCore.Mvc.TagHelpers/internal/index.d.ts +16 -8
  26. package/Microsoft.AspNetCore.Mvc.d.ts +1 -0
  27. package/Microsoft.AspNetCore.OutputCaching/internal/index.d.ts +4 -2
  28. package/Microsoft.AspNetCore.Routing/internal/index.d.ts +6 -3
  29. package/Microsoft.AspNetCore.Server.HttpSys/internal/index.d.ts +4 -2
  30. package/Microsoft.AspNetCore.Server.Kestrel.Core/internal/index.d.ts +10 -5
  31. package/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes/internal/index.d.ts +4 -2
  32. package/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic/internal/index.d.ts +4 -2
  33. package/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/internal/index.d.ts +8 -4
  34. package/Microsoft.AspNetCore.SignalR/internal/index.d.ts +14 -7
  35. package/Microsoft.AspNetCore.WebSockets/internal/index.d.ts +4 -2
  36. package/Microsoft.AspNetCore.WebUtilities/internal/index.d.ts +4 -2
  37. package/Microsoft.Net.Http.Headers/internal/index.d.ts +28 -14
  38. package/__internal/extensions/index.d.ts +2 -2
  39. 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: CookieAuthenticationEvents | unknown;
292
+ Events: unknown;
293
293
  Options: TOptions;
294
294
  Scheme: AuthenticationScheme;
295
295
  AuthenticateAsync(): Task_1<AuthenticateResult>;
@@ -387,10 +387,13 @@ export type AuthenticationOptions = AuthenticationOptions$instance;
387
387
  export interface AuthenticationProperties$instance {
388
388
  readonly __tsonic_type_Microsoft_AspNetCore_Authentication_AuthenticationProperties: never;
389
389
 
390
- AllowRefresh: Nullable_1<System_Internal.Boolean>;
391
- ExpiresUtc: Nullable_1<DateTimeOffset>;
390
+ get AllowRefresh(): Nullable_1<System_Internal.Boolean>;
391
+ set AllowRefresh(value: Nullable_1<System_Internal.Boolean> | boolean);
392
+ get ExpiresUtc(): Nullable_1<DateTimeOffset>;
393
+ set ExpiresUtc(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
392
394
  IsPersistent: boolean;
393
- IssuedUtc: Nullable_1<DateTimeOffset>;
395
+ get IssuedUtc(): Nullable_1<DateTimeOffset>;
396
+ set IssuedUtc(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
394
397
  readonly Items: IDictionary_2<System_Internal.String, string | undefined>;
395
398
  readonly Parameters: IDictionary_2<System_Internal.String, unknown | undefined>;
396
399
  get RedirectUri(): string | undefined;
@@ -452,7 +455,7 @@ export interface AuthenticationSchemeOptions$instance {
452
455
 
453
456
  get ClaimsIssuer(): string | undefined;
454
457
  set ClaimsIssuer(value: string | undefined);
455
- Events: RemoteAuthenticationEvents | unknown;
458
+ Events: unknown;
456
459
  get EventsType(): Type | undefined;
457
460
  set EventsType(value: Type | undefined);
458
461
  get ForwardAuthenticate(): string | undefined;
@@ -855,7 +858,7 @@ export interface RemoteAuthenticationOptions$instance extends AuthenticationSche
855
858
  CorrelationCookie: CookieBuilder;
856
859
  get DataProtectionProvider(): IDataProtectionProvider | undefined;
857
860
  set DataProtectionProvider(value: IDataProtectionProvider | undefined);
858
- Events: RemoteAuthenticationEvents | unknown;
861
+ Events: unknown;
859
862
  RemoteAuthenticationTimeout: TimeSpan;
860
863
  ReturnUrlParameter: string;
861
864
  SaveTokens: boolean;
@@ -51,7 +51,7 @@ export interface BearerTokenOptions$instance extends AuthenticationSchemeOptions
51
51
 
52
52
  BearerTokenExpiration: TimeSpan;
53
53
  BearerTokenProtector: ISecureDataFormat_1<AuthenticationTicket>;
54
- Events: BearerTokenEvents | unknown;
54
+ Events: unknown;
55
55
  RefreshTokenExpiration: TimeSpan;
56
56
  RefreshTokenProtector: ISecureDataFormat_1<AuthenticationTicket>;
57
57
  }
@@ -56,7 +56,8 @@ export interface ChunkingCookieManager$instance extends ICookieManager$instance
56
56
 
57
57
  readonly __tsonic_iface_Microsoft_AspNetCore_Authentication_Cookies_ICookieManager: never;
58
58
 
59
- ChunkSize: Nullable_1<System_Internal.Int32>;
59
+ get ChunkSize(): Nullable_1<System_Internal.Int32>;
60
+ set ChunkSize(value: Nullable_1<System_Internal.Int32> | int);
60
61
  ThrowForPartialCookies: boolean;
61
62
  AppendResponseCookie(context: HttpContext, key: string, value: string, options: CookieOptions): void;
62
63
  DeleteCookie(context: HttpContext, key: string, options: CookieOptions): void;
@@ -148,7 +149,7 @@ export interface CookieAuthenticationOptions$instance extends AuthenticationSche
148
149
  CookieManager: ICookieManager;
149
150
  get DataProtectionProvider(): IDataProtectionProvider | undefined;
150
151
  set DataProtectionProvider(value: IDataProtectionProvider | undefined);
151
- Events: CookieAuthenticationEvents | unknown;
152
+ Events: unknown;
152
153
  ExpireTimeSpan: TimeSpan;
153
154
  LoginPath: PathString;
154
155
  LogoutPath: PathString;
@@ -134,7 +134,7 @@ export interface OAuthOptions$instance extends RemoteAuthenticationOptions {
134
134
  readonly ClaimActions: ClaimActionCollection;
135
135
  ClientId: string;
136
136
  ClientSecret: string;
137
- Events: OAuthEvents | RemoteAuthenticationEvents | unknown;
137
+ Events: unknown;
138
138
  readonly Scope: ICollection_1<System_Internal.String>;
139
139
  StateDataFormat: ISecureDataFormat_1<AuthenticationProperties>;
140
140
  TokenEndpoint: string;
@@ -51,7 +51,7 @@ import type { ConfigurationManager, IConfiguration, IConfigurationBuilder } from
51
51
  import type { IServiceCollection, IServiceProviderFactory_1 } from "@tsonic/microsoft-extensions/Microsoft.Extensions.DependencyInjection/internal/index.js";
52
52
  import type { IMetricsBuilder } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Diagnostics.Metrics/internal/index.js";
53
53
  import type { IFileProvider } from "@tsonic/microsoft-extensions/Microsoft.Extensions.FileProviders/internal/index.js";
54
- import * as Microsoft_Extensions_Hosting_Lib from "@tsonic/microsoft-extensions/Microsoft.Extensions.Hosting/internal/index.js";
54
+ import * as Microsoft_Extensions_Hosting_Lib_tsonic_microsoft_extensions from "@tsonic/microsoft-extensions/Microsoft.Extensions.Hosting/internal/index.js";
55
55
  import type { HostBuilderContext, IHost, IHostApplicationBuilder, IHostApplicationLifetime, IHostBuilder } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Hosting/internal/index.js";
56
56
  import type { ILogger, ILoggerFactory, ILoggingBuilder } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Logging/internal/index.js";
57
57
 
@@ -138,7 +138,7 @@ export interface __ComponentEndpointConventionBuilder$views {
138
138
  export type ComponentEndpointConventionBuilder = ComponentEndpointConventionBuilder$instance & __ComponentEndpointConventionBuilder$views;
139
139
 
140
140
 
141
- export interface ConfigureHostBuilder$instance extends Microsoft_AspNetCore_Hosting_Infrastructure_Internal.ISupportsConfigureWebHost$instance, Microsoft_Extensions_Hosting_Lib.IHostBuilder {
141
+ export interface ConfigureHostBuilder$instance extends Microsoft_AspNetCore_Hosting_Infrastructure_Internal.ISupportsConfigureWebHost$instance, Microsoft_Extensions_Hosting_Lib_tsonic_microsoft_extensions.IHostBuilder {
142
142
  readonly __tsonic_type_Microsoft_AspNetCore_Builder_ConfigureHostBuilder: never;
143
143
 
144
144
  readonly __tsonic_iface_Microsoft_AspNetCore_Hosting_Infrastructure_ISupportsConfigureWebHost: never;
@@ -373,7 +373,8 @@ export interface ForwardedHeadersOptions$instance {
373
373
  ForwardedHostHeaderName: string;
374
374
  ForwardedPrefixHeaderName: string;
375
375
  ForwardedProtoHeaderName: string;
376
- ForwardLimit: Nullable_1<System_Internal.Int32>;
376
+ get ForwardLimit(): Nullable_1<System_Internal.Int32>;
377
+ set ForwardLimit(value: Nullable_1<System_Internal.Int32> | int);
377
378
  readonly KnownIPNetworks: IList_1<IPNetwork__System_Net>;
378
379
  readonly KnownNetworks: IList_1<IPNetwork>;
379
380
  readonly KnownProxies: IList_1<IPAddress>;
@@ -454,7 +455,8 @@ export interface IISServerOptions$instance {
454
455
  set AuthenticationDisplayName(value: string | undefined);
455
456
  AutomaticAuthentication: boolean;
456
457
  MaxRequestBodyBufferSize: int;
457
- MaxRequestBodySize: Nullable_1<System_Internal.Int64>;
458
+ get MaxRequestBodySize(): Nullable_1<System_Internal.Int64>;
459
+ set MaxRequestBodySize(value: Nullable_1<System_Internal.Int64> | long);
458
460
  }
459
461
 
460
462
 
@@ -621,7 +623,7 @@ export const StatusCodePagesOptions: {
621
623
 
622
624
  export type StatusCodePagesOptions = StatusCodePagesOptions$instance;
623
625
 
624
- export interface WebApplication$instance extends IApplicationBuilder$instance, Microsoft_AspNetCore_Routing_Internal.IEndpointRouteBuilder$instance, Microsoft_Extensions_Hosting_Lib.IHost, System_Internal.IAsyncDisposable, System_Internal.IDisposable {
626
+ export interface WebApplication$instance extends IApplicationBuilder$instance, Microsoft_AspNetCore_Routing_Internal.IEndpointRouteBuilder$instance, Microsoft_Extensions_Hosting_Lib_tsonic_microsoft_extensions.IHost, System_Internal.IAsyncDisposable, System_Internal.IDisposable {
625
627
  readonly __tsonic_type_Microsoft_AspNetCore_Builder_WebApplication: never;
626
628
 
627
629
  readonly __tsonic_iface_Microsoft_AspNetCore_Builder_IApplicationBuilder: never;
@@ -367,7 +367,8 @@ export interface InputCheckbox$instance extends InputBase_1$instance<System_Inte
367
367
  readonly __tsonic_iface_Microsoft_AspNetCore_Components_IHandleEvent: never;
368
368
  readonly __tsonic_iface_System_IDisposable: never;
369
369
 
370
- Element: Nullable_1<ElementReference>;
370
+ get Element(): Nullable_1<ElementReference>;
371
+ set Element(value: Nullable_1<ElementReference> | ElementReference);
371
372
  BuildRenderTree(builder: RenderTreeBuilder): void;
372
373
  TryParseValueFromString(value: string, result: boolean, validationErrorMessage: string): boolean;
373
374
  }
@@ -395,7 +396,8 @@ export interface InputDate_1$instance<TValue> extends InputBase_1$instance<TValu
395
396
  readonly __tsonic_iface_Microsoft_AspNetCore_Components_IHandleEvent: never;
396
397
  readonly __tsonic_iface_System_IDisposable: never;
397
398
 
398
- Element: Nullable_1<ElementReference>;
399
+ get Element(): Nullable_1<ElementReference>;
400
+ set Element(value: Nullable_1<ElementReference> | ElementReference);
399
401
  ParsingErrorMessage: string;
400
402
  Type: InputDateType;
401
403
  BuildRenderTree(builder: RenderTreeBuilder): void;
@@ -430,7 +432,8 @@ export interface InputFile$instance extends ComponentBase, Microsoft_AspNetCore_
430
432
 
431
433
  get AdditionalAttributes(): IDictionary_2<System_Internal.String, unknown> | undefined;
432
434
  set AdditionalAttributes(value: IDictionary_2<System_Internal.String, unknown> | undefined);
433
- Element: Nullable_1<ElementReference>;
435
+ get Element(): Nullable_1<ElementReference>;
436
+ set Element(value: Nullable_1<ElementReference> | ElementReference);
434
437
  OnChange: EventCallback_1<InputFileChangeEventArgs>;
435
438
  BuildRenderTree(builder: RenderTreeBuilder): void;
436
439
  OnAfterRenderAsync(firstRender: boolean): Task;
@@ -475,7 +478,8 @@ export interface InputHidden$instance extends InputBase_1$instance<System_Intern
475
478
  readonly __tsonic_iface_Microsoft_AspNetCore_Components_IHandleEvent: never;
476
479
  readonly __tsonic_iface_System_IDisposable: never;
477
480
 
478
- Element: Nullable_1<ElementReference>;
481
+ get Element(): Nullable_1<ElementReference>;
482
+ set Element(value: Nullable_1<ElementReference> | ElementReference);
479
483
  BuildRenderTree(builder: RenderTreeBuilder): void;
480
484
  TryParseValueFromString(value: string, result: string, validationErrorMessage: string): boolean;
481
485
  }
@@ -503,7 +507,8 @@ export interface InputNumber_1$instance<TValue> extends InputBase_1$instance<TVa
503
507
  readonly __tsonic_iface_Microsoft_AspNetCore_Components_IHandleEvent: never;
504
508
  readonly __tsonic_iface_System_IDisposable: never;
505
509
 
506
- Element: Nullable_1<ElementReference>;
510
+ get Element(): Nullable_1<ElementReference>;
511
+ set Element(value: Nullable_1<ElementReference> | ElementReference);
507
512
  ParsingErrorMessage: string;
508
513
  BuildRenderTree(builder: RenderTreeBuilder): void;
509
514
  FormatValueAsString(value: TValue): string | undefined;
@@ -534,7 +539,8 @@ export interface InputRadio_1$instance<TValue> extends ComponentBase, Microsoft_
534
539
 
535
540
  get AdditionalAttributes(): IReadOnlyDictionary_2<System_Internal.String, unknown> | undefined;
536
541
  set AdditionalAttributes(value: IReadOnlyDictionary_2<System_Internal.String, unknown> | undefined);
537
- Element: Nullable_1<ElementReference>;
542
+ get Element(): Nullable_1<ElementReference>;
543
+ set Element(value: Nullable_1<ElementReference> | ElementReference);
538
544
  get Name(): string | undefined;
539
545
  set Name(value: string | undefined);
540
546
  Value: TValue | undefined;
@@ -600,7 +606,8 @@ export interface InputSelect_1$instance<TValue> extends InputBase_1$instance<TVa
600
606
 
601
607
  get ChildContent(): RenderFragment | undefined;
602
608
  set ChildContent(value: RenderFragment | undefined);
603
- Element: Nullable_1<ElementReference>;
609
+ get Element(): Nullable_1<ElementReference>;
610
+ set Element(value: Nullable_1<ElementReference> | ElementReference);
604
611
  BuildRenderTree(builder: RenderTreeBuilder): void;
605
612
  FormatValueAsString(value: TValue): string | undefined;
606
613
  TryParseValueFromString(value: string, result: TValue, validationErrorMessage: string): boolean;
@@ -629,7 +636,8 @@ export interface InputText$instance extends InputBase_1$instance<System_Internal
629
636
  readonly __tsonic_iface_Microsoft_AspNetCore_Components_IHandleEvent: never;
630
637
  readonly __tsonic_iface_System_IDisposable: never;
631
638
 
632
- Element: Nullable_1<ElementReference>;
639
+ get Element(): Nullable_1<ElementReference>;
640
+ set Element(value: Nullable_1<ElementReference> | ElementReference);
633
641
  BuildRenderTree(builder: RenderTreeBuilder): void;
634
642
  TryParseValueFromString(value: string, result: string, validationErrorMessage: string): boolean;
635
643
  }
@@ -657,7 +665,8 @@ export interface InputTextArea$instance extends InputBase_1$instance<System_Inte
657
665
  readonly __tsonic_iface_Microsoft_AspNetCore_Components_IHandleEvent: never;
658
666
  readonly __tsonic_iface_System_IDisposable: never;
659
667
 
660
- Element: Nullable_1<ElementReference>;
668
+ get Element(): Nullable_1<ElementReference>;
669
+ set Element(value: Nullable_1<ElementReference> | ElementReference);
661
670
  BuildRenderTree(builder: RenderTreeBuilder): void;
662
671
  TryParseValueFromString(value: string, result: string, validationErrorMessage: string): boolean;
663
672
  }
@@ -28,7 +28,8 @@ export interface CircuitOptions$instance {
28
28
  set HybridPersistenceCache(value: HybridCache | undefined);
29
29
  JSInteropDefaultCallTimeout: TimeSpan;
30
30
  MaxBufferedUnacknowledgedRenderBatches: int;
31
- PersistedCircuitDistributedRetentionPeriod: Nullable_1<TimeSpan>;
31
+ get PersistedCircuitDistributedRetentionPeriod(): Nullable_1<TimeSpan>;
32
+ set PersistedCircuitDistributedRetentionPeriod(value: Nullable_1<TimeSpan> | TimeSpan);
32
33
  PersistedCircuitInMemoryMaxRetained: int;
33
34
  PersistedCircuitInMemoryRetentionPeriod: TimeSpan;
34
35
  readonly RootComponents: CircuitRootComponentOptions;
@@ -120,7 +120,8 @@ export interface CorsPolicy$instance {
120
120
  IsOriginAllowed: Func_2<System_Internal.String, System_Internal.Boolean>;
121
121
  readonly Methods: IList_1<System_Internal.String>;
122
122
  readonly Origins: IList_1<System_Internal.String>;
123
- PreflightMaxAge: Nullable_1<TimeSpan>;
123
+ get PreflightMaxAge(): Nullable_1<TimeSpan>;
124
+ set PreflightMaxAge(value: Nullable_1<TimeSpan> | TimeSpan);
124
125
  SupportsCredentials: boolean;
125
126
  ToString(): string;
126
127
  }
@@ -170,7 +171,8 @@ export interface CorsResult$instance {
170
171
  set AllowedOrigin(value: string | undefined);
171
172
  IsOriginAllowed: boolean;
172
173
  IsPreflightRequest: boolean;
173
- PreflightMaxAge: Nullable_1<TimeSpan>;
174
+ get PreflightMaxAge(): Nullable_1<TimeSpan>;
175
+ set PreflightMaxAge(value: Nullable_1<TimeSpan> | TimeSpan);
174
176
  SupportsCredentials: boolean;
175
177
  VaryByOrigin: boolean;
176
178
  ToString(): string;
@@ -18,7 +18,8 @@ export interface IDeletableElement$instance {
18
18
  readonly __tsonic_iface_Microsoft_AspNetCore_DataProtection_Repositories_IDeletableElement: never;
19
19
 
20
20
  readonly Element: XElement;
21
- DeletionOrder: Nullable_1<System_Internal.Int32>;
21
+ get DeletionOrder(): Nullable_1<System_Internal.Int32>;
22
+ set DeletionOrder(value: Nullable_1<System_Internal.Int32> | int);
22
23
  }
23
24
 
24
25
 
@@ -153,7 +153,8 @@ export type IFormFileCollection = IFormFileCollection$instance & { readonly [nam
153
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 {
154
154
  readonly __tsonic_iface_Microsoft_AspNetCore_Http_IHeaderDictionary: never;
155
155
 
156
- ContentLength: Nullable_1<System_Internal.Int64>;
156
+ get ContentLength(): Nullable_1<System_Internal.Int64>;
157
+ set ContentLength(value: Nullable_1<System_Internal.Int64> | long);
157
158
  Accept: StringValues;
158
159
  AcceptCharset: StringValues;
159
160
  AcceptEncoding: StringValues;
@@ -720,11 +721,13 @@ export interface CookieBuilder$instance {
720
721
 
721
722
  get Domain(): string | undefined;
722
723
  set Domain(value: string | undefined);
723
- Expiration: Nullable_1<TimeSpan>;
724
+ get Expiration(): Nullable_1<TimeSpan>;
725
+ set Expiration(value: Nullable_1<TimeSpan> | TimeSpan);
724
726
  readonly Extensions: IList_1<System_Internal.String>;
725
727
  HttpOnly: boolean;
726
728
  IsEssential: boolean;
727
- MaxAge: Nullable_1<TimeSpan>;
729
+ get MaxAge(): Nullable_1<TimeSpan>;
730
+ set MaxAge(value: Nullable_1<TimeSpan> | TimeSpan);
728
731
  get Name(): string | undefined;
729
732
  set Name(value: string | undefined);
730
733
  get Path(): string | undefined;
@@ -748,11 +751,13 @@ export interface CookieOptions$instance {
748
751
 
749
752
  get Domain(): string | undefined;
750
753
  set Domain(value: string | undefined);
751
- Expires: Nullable_1<DateTimeOffset>;
754
+ get Expires(): Nullable_1<DateTimeOffset>;
755
+ set Expires(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
752
756
  readonly Extensions: IList_1<System_Internal.String>;
753
757
  HttpOnly: boolean;
754
758
  IsEssential: boolean;
755
- MaxAge: Nullable_1<TimeSpan>;
759
+ get MaxAge(): Nullable_1<TimeSpan>;
760
+ set MaxAge(value: Nullable_1<TimeSpan> | TimeSpan);
756
761
  get Path(): string | undefined;
757
762
  set Path(value: string | undefined);
758
763
  SameSite: SameSiteMode;
@@ -1076,7 +1081,8 @@ export interface HeaderDictionary$instance extends IHeaderDictionary$instance {
1076
1081
  readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
1077
1082
  readonly __tsonic_iface_System_Collections_IEnumerable: never;
1078
1083
 
1079
- ContentLength: Nullable_1<System_Internal.Int64>;
1084
+ get ContentLength(): Nullable_1<System_Internal.Int64>;
1085
+ set ContentLength(value: Nullable_1<System_Internal.Int64> | long);
1080
1086
  readonly Count: int;
1081
1087
  IsReadOnly: boolean;
1082
1088
  readonly Keys: ICollection_1<System_Internal.String>;
@@ -1159,7 +1165,8 @@ export interface HttpRequest$instance {
1159
1165
 
1160
1166
  Body: Stream;
1161
1167
  readonly BodyReader: PipeReader;
1162
- ContentLength: Nullable_1<System_Internal.Int64>;
1168
+ get ContentLength(): Nullable_1<System_Internal.Int64>;
1169
+ set ContentLength(value: Nullable_1<System_Internal.Int64> | long);
1163
1170
  get ContentType(): string | undefined;
1164
1171
  set ContentType(value: string | undefined);
1165
1172
  Cookies: IRequestCookieCollection;
@@ -1192,7 +1199,8 @@ export interface HttpResponse$instance {
1192
1199
 
1193
1200
  Body: Stream;
1194
1201
  readonly BodyWriter: PipeWriter;
1195
- ContentLength: Nullable_1<System_Internal.Int64>;
1202
+ get ContentLength(): Nullable_1<System_Internal.Int64>;
1203
+ set ContentLength(value: Nullable_1<System_Internal.Int64> | long);
1196
1204
  get ContentType(): string | undefined;
1197
1205
  set ContentType(value: string | undefined);
1198
1206
  readonly Cookies: IResponseCookies;
@@ -1455,8 +1463,10 @@ export interface WebSocketAcceptContext$instance {
1455
1463
 
1456
1464
  DangerousEnableCompression: boolean;
1457
1465
  DisableServerContextTakeover: boolean;
1458
- KeepAliveInterval: Nullable_1<TimeSpan>;
1459
- KeepAliveTimeout: Nullable_1<TimeSpan>;
1466
+ get KeepAliveInterval(): Nullable_1<TimeSpan>;
1467
+ set KeepAliveInterval(value: Nullable_1<TimeSpan> | TimeSpan);
1468
+ get KeepAliveTimeout(): Nullable_1<TimeSpan>;
1469
+ set KeepAliveTimeout(value: Nullable_1<TimeSpan> | TimeSpan);
1460
1470
  ServerMaxWindowBits: int;
1461
1471
  get SubProtocol(): string | undefined;
1462
1472
  set SubProtocol(value: string | undefined);
@@ -44,7 +44,8 @@ export type AvailableTransport = AvailableTransport$instance;
44
44
  export interface ConnectionOptions$instance {
45
45
  readonly __tsonic_type_Microsoft_AspNetCore_Http_Connections_ConnectionOptions: never;
46
46
 
47
- DisconnectTimeout: Nullable_1<TimeSpan>;
47
+ get DisconnectTimeout(): Nullable_1<TimeSpan>;
48
+ set DisconnectTimeout(value: Nullable_1<TimeSpan> | TimeSpan);
48
49
  }
49
50
 
50
51
 
@@ -133,7 +133,8 @@ export interface IHttpMaxRequestBodySizeFeature$instance {
133
133
  readonly __tsonic_iface_Microsoft_AspNetCore_Http_Features_IHttpMaxRequestBodySizeFeature: never;
134
134
 
135
135
  readonly IsReadOnly: boolean;
136
- MaxRequestBodySize: Nullable_1<System_Internal.Int64>;
136
+ get MaxRequestBodySize(): Nullable_1<System_Internal.Int64>;
137
+ set MaxRequestBodySize(value: Nullable_1<System_Internal.Int64> | long);
137
138
  }
138
139
 
139
140
 
@@ -23,23 +23,29 @@ export interface RequestHeaders$instance {
23
23
  set CacheControl(value: CacheControlHeaderValue | undefined);
24
24
  get ContentDisposition(): ContentDispositionHeaderValue | undefined;
25
25
  set ContentDisposition(value: ContentDispositionHeaderValue | undefined);
26
- ContentLength: Nullable_1<System_Internal.Int64>;
26
+ get ContentLength(): Nullable_1<System_Internal.Int64>;
27
+ set ContentLength(value: Nullable_1<System_Internal.Int64> | long);
27
28
  get ContentRange(): ContentRangeHeaderValue | undefined;
28
29
  set ContentRange(value: ContentRangeHeaderValue | undefined);
29
30
  get ContentType(): MediaTypeHeaderValue | undefined;
30
31
  set ContentType(value: MediaTypeHeaderValue | undefined);
31
32
  Cookie: IList_1<CookieHeaderValue>;
32
- Date: Nullable_1<DateTimeOffset>;
33
- Expires: Nullable_1<DateTimeOffset>;
33
+ get Date(): Nullable_1<DateTimeOffset>;
34
+ set Date(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
35
+ get Expires(): Nullable_1<DateTimeOffset>;
36
+ set Expires(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
34
37
  readonly Headers: IHeaderDictionary;
35
38
  Host: HostString;
36
39
  IfMatch: IList_1<EntityTagHeaderValue>;
37
- IfModifiedSince: Nullable_1<DateTimeOffset>;
40
+ get IfModifiedSince(): Nullable_1<DateTimeOffset>;
41
+ set IfModifiedSince(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
38
42
  IfNoneMatch: IList_1<EntityTagHeaderValue>;
39
43
  get IfRange(): RangeConditionHeaderValue | undefined;
40
44
  set IfRange(value: RangeConditionHeaderValue | undefined);
41
- IfUnmodifiedSince: Nullable_1<DateTimeOffset>;
42
- LastModified: Nullable_1<DateTimeOffset>;
45
+ get IfUnmodifiedSince(): Nullable_1<DateTimeOffset>;
46
+ set IfUnmodifiedSince(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
47
+ get LastModified(): Nullable_1<DateTimeOffset>;
48
+ set LastModified(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
43
49
  get Range(): RangeHeaderValue | undefined;
44
50
  set Range(value: RangeHeaderValue | undefined);
45
51
  get Referer(): Uri | undefined;
@@ -67,17 +73,21 @@ export interface ResponseHeaders$instance {
67
73
  set CacheControl(value: CacheControlHeaderValue | undefined);
68
74
  get ContentDisposition(): ContentDispositionHeaderValue | undefined;
69
75
  set ContentDisposition(value: ContentDispositionHeaderValue | undefined);
70
- ContentLength: Nullable_1<System_Internal.Int64>;
76
+ get ContentLength(): Nullable_1<System_Internal.Int64>;
77
+ set ContentLength(value: Nullable_1<System_Internal.Int64> | long);
71
78
  get ContentRange(): ContentRangeHeaderValue | undefined;
72
79
  set ContentRange(value: ContentRangeHeaderValue | undefined);
73
80
  get ContentType(): MediaTypeHeaderValue | undefined;
74
81
  set ContentType(value: MediaTypeHeaderValue | undefined);
75
- Date: Nullable_1<DateTimeOffset>;
82
+ get Date(): Nullable_1<DateTimeOffset>;
83
+ set Date(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
76
84
  get ETag(): EntityTagHeaderValue | undefined;
77
85
  set ETag(value: EntityTagHeaderValue | undefined);
78
- Expires: Nullable_1<DateTimeOffset>;
86
+ get Expires(): Nullable_1<DateTimeOffset>;
87
+ set Expires(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
79
88
  readonly Headers: IHeaderDictionary;
80
- LastModified: Nullable_1<DateTimeOffset>;
89
+ get LastModified(): Nullable_1<DateTimeOffset>;
90
+ set LastModified(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
81
91
  get Location(): Uri | undefined;
82
92
  set Location(value: Uri | undefined);
83
93
  SetCookie: IList_1<SetCookieHeaderValue>;
@@ -285,7 +285,8 @@ export interface ContentHttpResult$instance extends Microsoft_AspNetCore_Http_In
285
285
  ContentType: string;
286
286
  get ResponseContent(): string | undefined;
287
287
  set ResponseContent(value: string | undefined);
288
- StatusCode: Nullable_1<System_Internal.Int32>;
288
+ get StatusCode(): Nullable_1<System_Internal.Int32>;
289
+ set StatusCode(value: Nullable_1<System_Internal.Int32> | int);
289
290
  ExecuteAsync(httpContext: HttpContext): Task;
290
291
  }
291
292
 
@@ -454,8 +455,10 @@ export interface FileContentHttpResult$instance extends Microsoft_AspNetCore_Htt
454
455
  FileContents: ReadOnlyMemory_1<System_Internal.Byte>;
455
456
  get FileDownloadName(): string | undefined;
456
457
  set FileDownloadName(value: string | undefined);
457
- FileLength: Nullable_1<System_Internal.Int64>;
458
- LastModified: Nullable_1<DateTimeOffset>;
458
+ get FileLength(): Nullable_1<System_Internal.Int64>;
459
+ set FileLength(value: Nullable_1<System_Internal.Int64> | long);
460
+ get LastModified(): Nullable_1<DateTimeOffset>;
461
+ set LastModified(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
459
462
  ExecuteAsync(httpContext: HttpContext): Task;
460
463
  }
461
464
 
@@ -486,9 +489,11 @@ export interface FileStreamHttpResult$instance extends Microsoft_AspNetCore_Http
486
489
  set EntityTag(value: EntityTagHeaderValue | undefined);
487
490
  get FileDownloadName(): string | undefined;
488
491
  set FileDownloadName(value: string | undefined);
489
- FileLength: Nullable_1<System_Internal.Int64>;
492
+ get FileLength(): Nullable_1<System_Internal.Int64>;
493
+ set FileLength(value: Nullable_1<System_Internal.Int64> | long);
490
494
  readonly FileStream: Stream;
491
- LastModified: Nullable_1<DateTimeOffset>;
495
+ get LastModified(): Nullable_1<DateTimeOffset>;
496
+ set LastModified(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
492
497
  ExecuteAsync(httpContext: HttpContext): Task;
493
498
  }
494
499
 
@@ -766,9 +771,11 @@ export interface PhysicalFileHttpResult$instance extends Microsoft_AspNetCore_Ht
766
771
  set EntityTag(value: EntityTagHeaderValue | undefined);
767
772
  get FileDownloadName(): string | undefined;
768
773
  set FileDownloadName(value: string | undefined);
769
- FileLength: Nullable_1<System_Internal.Int64>;
774
+ get FileLength(): Nullable_1<System_Internal.Int64>;
775
+ set FileLength(value: Nullable_1<System_Internal.Int64> | long);
770
776
  readonly FileName: string;
771
- LastModified: Nullable_1<DateTimeOffset>;
777
+ get LastModified(): Nullable_1<DateTimeOffset>;
778
+ set LastModified(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
772
779
  ExecuteAsync(httpContext: HttpContext): Task;
773
780
  }
774
781
 
@@ -832,8 +839,10 @@ export interface PushStreamHttpResult$instance extends Microsoft_AspNetCore_Http
832
839
  set EntityTag(value: EntityTagHeaderValue | undefined);
833
840
  get FileDownloadName(): string | undefined;
834
841
  set FileDownloadName(value: string | undefined);
835
- FileLength: Nullable_1<System_Internal.Int64>;
836
- LastModified: Nullable_1<DateTimeOffset>;
842
+ get FileLength(): Nullable_1<System_Internal.Int64>;
843
+ set FileLength(value: Nullable_1<System_Internal.Int64> | long);
844
+ get LastModified(): Nullable_1<DateTimeOffset>;
845
+ set LastModified(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
837
846
  ExecuteAsync(httpContext: HttpContext): Task;
838
847
  }
839
848
 
@@ -862,7 +871,8 @@ export interface RazorComponentResult$instance extends Microsoft_AspNetCore_Http
862
871
  ContentType: string;
863
872
  readonly Parameters: IReadOnlyDictionary_2<System_Internal.String, unknown | undefined>;
864
873
  PreventStreamingRendering: boolean;
865
- StatusCode: Nullable_1<System_Internal.Int32>;
874
+ get StatusCode(): Nullable_1<System_Internal.Int32>;
875
+ set StatusCode(value: Nullable_1<System_Internal.Int32> | int);
866
876
  ExecuteAsync(httpContext: HttpContext): Task;
867
877
  }
868
878
 
@@ -1267,7 +1277,8 @@ export interface Utf8ContentHttpResult$instance extends Microsoft_AspNetCore_Htt
1267
1277
 
1268
1278
  ContentType: string;
1269
1279
  ResponseContent: ReadOnlyMemory_1<System_Internal.Byte>;
1270
- StatusCode: Nullable_1<System_Internal.Int32>;
1280
+ get StatusCode(): Nullable_1<System_Internal.Int32>;
1281
+ set StatusCode(value: Nullable_1<System_Internal.Int32> | int);
1271
1282
  ExecuteAsync(httpContext: HttpContext): Task;
1272
1283
  }
1273
1284
 
@@ -1331,9 +1342,11 @@ export interface VirtualFileHttpResult$instance extends Microsoft_AspNetCore_Htt
1331
1342
  set EntityTag(value: EntityTagHeaderValue | undefined);
1332
1343
  get FileDownloadName(): string | undefined;
1333
1344
  set FileDownloadName(value: string | undefined);
1334
- FileLength: Nullable_1<System_Internal.Int64>;
1345
+ get FileLength(): Nullable_1<System_Internal.Int64>;
1346
+ set FileLength(value: Nullable_1<System_Internal.Int64> | long);
1335
1347
  FileName: string;
1336
- LastModified: Nullable_1<DateTimeOffset>;
1348
+ get LastModified(): Nullable_1<DateTimeOffset>;
1349
+ set LastModified(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
1337
1350
  ExecuteAsync(httpContext: HttpContext): Task;
1338
1351
  }
1339
1352
 
@@ -73,8 +73,10 @@ export type RequestTimeoutOptions = RequestTimeoutOptions$instance;
73
73
  export interface RequestTimeoutPolicy$instance {
74
74
  readonly __tsonic_type_Microsoft_AspNetCore_Http_Timeouts_RequestTimeoutPolicy: never;
75
75
 
76
- Timeout: Nullable_1<TimeSpan>;
77
- TimeoutStatusCode: Nullable_1<System_Internal.Int32>;
76
+ get Timeout(): Nullable_1<TimeSpan>;
77
+ set Timeout(value: Nullable_1<TimeSpan> | TimeSpan);
78
+ get TimeoutStatusCode(): Nullable_1<System_Internal.Int32>;
79
+ set TimeoutStatusCode(value: Nullable_1<System_Internal.Int32> | int);
78
80
  get WriteTimeoutResponse(): RequestDelegate | undefined;
79
81
  set WriteTimeoutResponse(value: RequestDelegate | undefined);
80
82
  }
@@ -156,11 +156,13 @@ export interface W3CLoggerOptions$instance {
156
156
 
157
157
  readonly AdditionalRequestHeaders: ISet_1<System_Internal.String>;
158
158
  FileName: string;
159
- FileSizeLimit: Nullable_1<System_Internal.Int32>;
159
+ get FileSizeLimit(): Nullable_1<System_Internal.Int32>;
160
+ set FileSizeLimit(value: Nullable_1<System_Internal.Int32> | int);
160
161
  FlushInterval: TimeSpan;
161
162
  LogDirectory: string;
162
163
  LoggingFields: W3CLoggingFields;
163
- RetainedFileCountLimit: Nullable_1<System_Internal.Int32>;
164
+ get RetainedFileCountLimit(): Nullable_1<System_Internal.Int32>;
165
+ set RetainedFileCountLimit(value: Nullable_1<System_Internal.Int32> | int);
164
166
  }
165
167
 
166
168
 
@@ -66,7 +66,8 @@ export type HttpsRedirectionMiddleware = HttpsRedirectionMiddleware$instance;
66
66
  export interface HttpsRedirectionOptions$instance {
67
67
  readonly __tsonic_type_Microsoft_AspNetCore_HttpsPolicy_HttpsRedirectionOptions: never;
68
68
 
69
- HttpsPort: Nullable_1<System_Internal.Int32>;
69
+ get HttpsPort(): Nullable_1<System_Internal.Int32>;
70
+ set HttpsPort(value: Nullable_1<System_Internal.Int32> | int);
70
71
  RedirectStatusCode: int;
71
72
  }
72
73
 
@@ -966,7 +966,8 @@ export interface IdentityUser_1$instance<TKey extends (IEquatable_1<TKey> | numb
966
966
  EmailConfirmed: boolean;
967
967
  Id: TKey;
968
968
  LockoutEnabled: boolean;
969
- LockoutEnd: Nullable_1<DateTimeOffset>;
969
+ get LockoutEnd(): Nullable_1<DateTimeOffset>;
970
+ set LockoutEnd(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
970
971
  get NormalizedEmail(): string | undefined;
971
972
  set NormalizedEmail(value: string | undefined);
972
973
  get NormalizedUserName(): string | undefined;
@@ -138,7 +138,8 @@ export type ResetPasswordRequest = ResetPasswordRequest$instance;
138
138
  export interface TwoFactorRequest$instance {
139
139
  readonly __tsonic_type_Microsoft_AspNetCore_Identity_Data_TwoFactorRequest: never;
140
140
 
141
- Enable: Nullable_1<System_Internal.Boolean>;
141
+ get Enable(): Nullable_1<System_Internal.Boolean>;
142
+ set Enable(value: Nullable_1<System_Internal.Boolean> | boolean);
142
143
  ForgetMachine: boolean;
143
144
  ResetRecoveryCodes: boolean;
144
145
  ResetSharedKey: boolean;
@@ -31,6 +31,7 @@ import * as Microsoft_AspNetCore_Mvc_ModelBinding_Validation_Internal from "../.
31
31
  import type { ClientModelValidationContext, IClientModelValidator, IClientModelValidatorProvider, IModelValidatorProvider, IObjectModelValidator } from "../../Microsoft.AspNetCore.Mvc.ModelBinding.Validation/internal/index.js";
32
32
  import * as Microsoft_AspNetCore_Mvc_ModelBinding_Internal from "../../Microsoft.AspNetCore.Mvc.ModelBinding/internal/index.js";
33
33
  import type { BindingSource, EmptyBodyBehavior, IBinderTypeProviderMetadata, IBindingSourceMetadata, IModelBinder, IModelBinderFactory, IModelBinderProvider, IModelMetadataProvider, IModelNameProvider, IPropertyFilterProvider, IRequestPredicateProvider, IValueProvider, IValueProviderFactory, ModelMetadata, ModelStateDictionary } from "../../Microsoft.AspNetCore.Mvc.ModelBinding/internal/index.js";
34
+ import type { CompiledPageActionDescriptor } from "../../Microsoft.AspNetCore.Mvc.RazorPages/internal/index.js";
34
35
  import type { ViewContext } from "../../Microsoft.AspNetCore.Mvc.Rendering/internal/index.js";
35
36
  import * as Microsoft_AspNetCore_Mvc_Routing_Internal from "../../Microsoft.AspNetCore.Mvc.Routing/internal/index.js";
36
37
  import type { HttpMethodAttribute, IActionHttpMethodProvider, IRouteTemplateProvider, IRouteValueProvider, RouteValueAttribute, UrlActionContext, UrlRouteContext } from "../../Microsoft.AspNetCore.Mvc.Routing/internal/index.js";
@@ -655,9 +656,12 @@ export type BindPropertyAttribute = BindPropertyAttribute$instance & __BindPrope
655
656
  export interface CacheProfile$instance {
656
657
  readonly __tsonic_type_Microsoft_AspNetCore_Mvc_CacheProfile: never;
657
658
 
658
- Duration: Nullable_1<System_Internal.Int32>;
659
- Location: Nullable_1<ResponseCacheLocation>;
660
- NoStore: Nullable_1<System_Internal.Boolean>;
659
+ get Duration(): Nullable_1<System_Internal.Int32>;
660
+ set Duration(value: Nullable_1<System_Internal.Int32> | int);
661
+ get Location(): Nullable_1<ResponseCacheLocation>;
662
+ set Location(value: Nullable_1<ResponseCacheLocation> | ResponseCacheLocation);
663
+ get NoStore(): Nullable_1<System_Internal.Boolean>;
664
+ set NoStore(value: Nullable_1<System_Internal.Boolean> | boolean);
661
665
  get VaryByHeader(): string | undefined;
662
666
  set VaryByHeader(value: string | undefined);
663
667
  get VaryByQueryKeys(): string[] | undefined;
@@ -811,7 +815,8 @@ export interface ContentResult$instance extends ActionResult$instance {
811
815
  set Content(value: string | undefined);
812
816
  get ContentType(): string | undefined;
813
817
  set ContentType(value: string | undefined);
814
- StatusCode: Nullable_1<System_Internal.Int32>;
818
+ get StatusCode(): Nullable_1<System_Internal.Int32>;
819
+ set StatusCode(value: Nullable_1<System_Internal.Int32> | int);
815
820
  ExecuteResultAsync(context: ActionContext): Task;
816
821
  }
817
822
 
@@ -1287,7 +1292,8 @@ export interface FileResult$instance extends ActionResult$instance, IActionResul
1287
1292
  get EntityTag(): EntityTagHeaderValue | undefined;
1288
1293
  set EntityTag(value: EntityTagHeaderValue | undefined);
1289
1294
  FileDownloadName: string;
1290
- LastModified: Nullable_1<DateTimeOffset>;
1295
+ get LastModified(): Nullable_1<DateTimeOffset>;
1296
+ set LastModified(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
1291
1297
  }
1292
1298
 
1293
1299
 
@@ -1755,7 +1761,8 @@ export interface JsonResult$instance extends ActionResult$instance {
1755
1761
  set ContentType(value: string | undefined);
1756
1762
  get SerializerSettings(): unknown | undefined;
1757
1763
  set SerializerSettings(value: unknown | undefined);
1758
- StatusCode: Nullable_1<System_Internal.Int32>;
1764
+ get StatusCode(): Nullable_1<System_Internal.Int32>;
1765
+ set StatusCode(value: Nullable_1<System_Internal.Int32> | int);
1759
1766
  get Value(): unknown | undefined;
1760
1767
  set Value(value: unknown | undefined);
1761
1768
  ExecuteResultAsync(context: ActionContext): Task;
@@ -1953,7 +1960,8 @@ export interface MvcOptions$instance {
1953
1960
  MaxModelBindingCollectionSize: int;
1954
1961
  MaxModelBindingRecursionDepth: int;
1955
1962
  MaxModelValidationErrors: int;
1956
- MaxValidationDepth: Nullable_1<System_Internal.Int32>;
1963
+ get MaxValidationDepth(): Nullable_1<System_Internal.Int32>;
1964
+ set MaxValidationDepth(value: Nullable_1<System_Internal.Int32> | int);
1957
1965
  readonly ModelBinderProviders: IList_1<IModelBinderProvider>;
1958
1966
  readonly ModelBindingMessageProvider: DefaultModelBindingMessageProvider;
1959
1967
  readonly ModelMetadataDetailsProviders: IList_1<IMetadataDetailsProvider>;
@@ -1962,7 +1970,8 @@ export interface MvcOptions$instance {
1962
1970
  RequireHttpsPermanent: boolean;
1963
1971
  RespectBrowserAcceptHeader: boolean;
1964
1972
  ReturnHttpNotAcceptable: boolean;
1965
- SslPort: Nullable_1<System_Internal.Int32>;
1973
+ get SslPort(): Nullable_1<System_Internal.Int32>;
1974
+ set SslPort(value: Nullable_1<System_Internal.Int32> | int);
1966
1975
  SuppressAsyncSuffixInActionNames: boolean;
1967
1976
  SuppressImplicitRequiredAttributeForNonNullableReferenceTypes: boolean;
1968
1977
  SuppressInputFormatterBuffering: boolean;
@@ -2115,7 +2124,8 @@ export interface ObjectResult$instance extends ActionResult$instance {
2115
2124
  get DeclaredType(): Type | undefined;
2116
2125
  set DeclaredType(value: Type | undefined);
2117
2126
  Formatters: FormatterCollection_1<IOutputFormatter>;
2118
- StatusCode: Nullable_1<System_Internal.Int32>;
2127
+ get StatusCode(): Nullable_1<System_Internal.Int32>;
2128
+ set StatusCode(value: Nullable_1<System_Internal.Int32> | int);
2119
2129
  get Value(): unknown | undefined;
2120
2130
  set Value(value: unknown | undefined);
2121
2131
  ExecuteResultAsync(context: ActionContext): Task;
@@ -2215,7 +2225,8 @@ export interface PartialViewResult$instance extends ActionResult$instance {
2215
2225
  get ContentType(): string | undefined;
2216
2226
  set ContentType(value: string | undefined);
2217
2227
  readonly Model: unknown | undefined;
2218
- StatusCode: Nullable_1<System_Internal.Int32>;
2228
+ get StatusCode(): Nullable_1<System_Internal.Int32>;
2229
+ set StatusCode(value: Nullable_1<System_Internal.Int32> | int);
2219
2230
  TempData: ITempDataDictionary;
2220
2231
  ViewData: ViewDataDictionary;
2221
2232
  get ViewEngine(): IViewEngine | undefined;
@@ -2270,7 +2281,8 @@ export interface ProblemDetails$instance {
2270
2281
  Extensions: IDictionary_2<System_Internal.String, unknown | undefined>;
2271
2282
  get Instance(): string | undefined;
2272
2283
  set Instance(value: string | undefined);
2273
- Status: Nullable_1<System_Internal.Int32>;
2284
+ get Status(): Nullable_1<System_Internal.Int32>;
2285
+ set Status(value: Nullable_1<System_Internal.Int32> | int);
2274
2286
  get Title(): string | undefined;
2275
2287
  set Title(value: string | undefined);
2276
2288
  get Type(): string | undefined;
@@ -3253,7 +3265,8 @@ export interface ViewComponentResult$instance extends ActionResult$instance {
3253
3265
  get ContentType(): string | undefined;
3254
3266
  set ContentType(value: string | undefined);
3255
3267
  readonly Model: unknown | undefined;
3256
- StatusCode: Nullable_1<System_Internal.Int32>;
3268
+ get StatusCode(): Nullable_1<System_Internal.Int32>;
3269
+ set StatusCode(value: Nullable_1<System_Internal.Int32> | int);
3257
3270
  TempData: ITempDataDictionary;
3258
3271
  get ViewComponentName(): string | undefined;
3259
3272
  set ViewComponentName(value: string | undefined);
@@ -3301,7 +3314,8 @@ export interface ViewResult$instance extends ActionResult$instance {
3301
3314
  get ContentType(): string | undefined;
3302
3315
  set ContentType(value: string | undefined);
3303
3316
  readonly Model: unknown | undefined;
3304
- StatusCode: Nullable_1<System_Internal.Int32>;
3317
+ get StatusCode(): Nullable_1<System_Internal.Int32>;
3318
+ set StatusCode(value: Nullable_1<System_Internal.Int32> | int);
3305
3319
  TempData: ITempDataDictionary;
3306
3320
  ViewData: ViewDataDictionary;
3307
3321
  get ViewEngine(): IViewEngine | undefined;
@@ -271,7 +271,8 @@ export interface ApiExplorerModel$instance {
271
271
 
272
272
  get GroupName(): string | undefined;
273
273
  set GroupName(value: string | undefined);
274
- IsVisible: Nullable_1<System_Internal.Boolean>;
274
+ get IsVisible(): Nullable_1<System_Internal.Boolean>;
275
+ set IsVisible(value: Nullable_1<System_Internal.Boolean> | boolean);
275
276
  }
276
277
 
277
278
 
@@ -355,7 +356,8 @@ export interface AttributeRouteModel$instance {
355
356
  readonly IsAbsoluteTemplate: boolean;
356
357
  get Name(): string | undefined;
357
358
  set Name(value: string | undefined);
358
- Order: Nullable_1<System_Internal.Int32>;
359
+ get Order(): Nullable_1<System_Internal.Int32>;
360
+ set Order(value: Nullable_1<System_Internal.Int32> | int);
359
361
  SuppressLinkGeneration: boolean;
360
362
  SuppressPathMatching: boolean;
361
363
  get Template(): string | undefined;
@@ -123,7 +123,8 @@ export interface BindingMetadata$instance {
123
123
  set BoundConstructor(value: ConstructorInfo | undefined);
124
124
  IsBindingAllowed: boolean;
125
125
  IsBindingRequired: boolean;
126
- IsReadOnly: Nullable_1<System_Internal.Boolean>;
126
+ get IsReadOnly(): Nullable_1<System_Internal.Boolean>;
127
+ set IsReadOnly(value: Nullable_1<System_Internal.Boolean> | boolean);
127
128
  get ModelBindingMessageProvider(): DefaultModelBindingMessageProvider | undefined;
128
129
  set ModelBindingMessageProvider(value: DefaultModelBindingMessageProvider | undefined);
129
130
  get PropertyFilterProvider(): IPropertyFilterProvider | undefined;
@@ -513,11 +514,14 @@ export type SystemTextJsonValidationMetadataProvider = SystemTextJsonValidationM
513
514
  export interface ValidationMetadata$instance {
514
515
  readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ModelBinding_Metadata_ValidationMetadata: never;
515
516
 
516
- HasValidators: Nullable_1<System_Internal.Boolean>;
517
- IsRequired: Nullable_1<System_Internal.Boolean>;
517
+ get HasValidators(): Nullable_1<System_Internal.Boolean>;
518
+ set HasValidators(value: Nullable_1<System_Internal.Boolean> | boolean);
519
+ get IsRequired(): Nullable_1<System_Internal.Boolean>;
520
+ set IsRequired(value: Nullable_1<System_Internal.Boolean> | boolean);
518
521
  get PropertyValidationFilter(): IPropertyValidationFilter | undefined;
519
522
  set PropertyValidationFilter(value: IPropertyValidationFilter | undefined);
520
- ValidateChildren: Nullable_1<System_Internal.Boolean>;
523
+ get ValidateChildren(): Nullable_1<System_Internal.Boolean>;
524
+ set ValidateChildren(value: Nullable_1<System_Internal.Boolean> | boolean);
521
525
  get ValidationModelName(): string | undefined;
522
526
  set ValidationModelName(value: string | undefined);
523
527
  readonly ValidatorMetadata: IList_1<unknown>;
@@ -355,7 +355,8 @@ export type ValidationStateEntry = ValidationStateEntry$instance;
355
355
  export interface ValidationVisitor$instance {
356
356
  readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ModelBinding_Validation_ValidationVisitor: never;
357
357
 
358
- MaxValidationDepth: Nullable_1<System_Internal.Int32>;
358
+ get MaxValidationDepth(): Nullable_1<System_Internal.Int32>;
359
+ set MaxValidationDepth(value: Nullable_1<System_Internal.Int32> | int);
359
360
  ValidateComplexTypesIfChildValidationFails: boolean;
360
361
  GetValidationEntry(model: unknown): ValidationStateEntry | undefined;
361
362
  SuppressValidation(key: string): void;
@@ -462,7 +462,8 @@ export interface PageResult$instance extends ActionResult {
462
462
  set ContentType(value: string | undefined);
463
463
  readonly Model: unknown;
464
464
  Page: PageBase;
465
- StatusCode: Nullable_1<System_Internal.Int32>;
465
+ get StatusCode(): Nullable_1<System_Internal.Int32>;
466
+ set StatusCode(value: Nullable_1<System_Internal.Int32> | int);
466
467
  ViewData: ViewDataDictionary;
467
468
  ExecuteResultAsync(context: ActionContext): Task;
468
469
  }
@@ -79,7 +79,8 @@ export interface CacheTagHelper$instance extends CacheTagHelperBase$instance {
79
79
  readonly __tsonic_iface_Microsoft_AspNetCore_Razor_TagHelpers_ITagHelper: never;
80
80
  readonly __tsonic_iface_Microsoft_AspNetCore_Razor_TagHelpers_ITagHelperComponent: never;
81
81
 
82
- Priority: Nullable_1<CacheItemPriority>;
82
+ get Priority(): Nullable_1<CacheItemPriority>;
83
+ set Priority(value: Nullable_1<CacheItemPriority> | CacheItemPriority);
83
84
  ProcessAsync(context: TagHelperContext, output: TagHelperOutput): Task;
84
85
  }
85
86
 
@@ -104,9 +105,12 @@ export interface CacheTagHelperBase$instance extends TagHelper {
104
105
  readonly __tsonic_iface_Microsoft_AspNetCore_Razor_TagHelpers_ITagHelperComponent: never;
105
106
 
106
107
  Enabled: boolean;
107
- ExpiresAfter: Nullable_1<TimeSpan>;
108
- ExpiresOn: Nullable_1<DateTimeOffset>;
109
- ExpiresSliding: Nullable_1<TimeSpan>;
108
+ get ExpiresAfter(): Nullable_1<TimeSpan>;
109
+ set ExpiresAfter(value: Nullable_1<TimeSpan> | TimeSpan);
110
+ get ExpiresOn(): Nullable_1<DateTimeOffset>;
111
+ set ExpiresOn(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
112
+ get ExpiresSliding(): Nullable_1<TimeSpan>;
113
+ set ExpiresSliding(value: Nullable_1<TimeSpan> | TimeSpan);
110
114
  readonly Order: int;
111
115
  VaryBy: string;
112
116
  VaryByCookie: string;
@@ -274,7 +278,8 @@ export interface FormTagHelper$instance extends TagHelper {
274
278
  readonly __tsonic_iface_Microsoft_AspNetCore_Razor_TagHelpers_ITagHelperComponent: never;
275
279
 
276
280
  Action: string;
277
- Antiforgery: Nullable_1<System_Internal.Boolean>;
281
+ get Antiforgery(): Nullable_1<System_Internal.Boolean>;
282
+ set Antiforgery(value: Nullable_1<System_Internal.Boolean> | boolean);
278
283
  Area: string;
279
284
  Controller: string;
280
285
  Fragment: string;
@@ -405,7 +410,8 @@ export interface LinkTagHelper$instance extends UrlResolutionTagHelper {
405
410
  readonly __tsonic_iface_Microsoft_AspNetCore_Razor_TagHelpers_ITagHelper: never;
406
411
  readonly __tsonic_iface_Microsoft_AspNetCore_Razor_TagHelpers_ITagHelperComponent: never;
407
412
 
408
- AppendVersion: Nullable_1<System_Internal.Boolean>;
413
+ get AppendVersion(): Nullable_1<System_Internal.Boolean>;
414
+ set AppendVersion(value: Nullable_1<System_Internal.Boolean> | boolean);
409
415
  FallbackHref: string;
410
416
  FallbackHrefExclude: string;
411
417
  FallbackHrefInclude: string;
@@ -493,7 +499,8 @@ export interface PersistComponentStateTagHelper$instance extends TagHelper {
493
499
  readonly __tsonic_iface_Microsoft_AspNetCore_Razor_TagHelpers_ITagHelper: never;
494
500
  readonly __tsonic_iface_Microsoft_AspNetCore_Razor_TagHelpers_ITagHelperComponent: never;
495
501
 
496
- PersistenceMode: Nullable_1<PersistenceMode>;
502
+ get PersistenceMode(): Nullable_1<PersistenceMode>;
503
+ set PersistenceMode(value: Nullable_1<PersistenceMode> | PersistenceMode);
497
504
  ViewContext: ViewContext;
498
505
  ProcessAsync(context: TagHelperContext, output: TagHelperOutput): Task;
499
506
  }
@@ -542,7 +549,8 @@ export interface ScriptTagHelper$instance extends UrlResolutionTagHelper {
542
549
  readonly __tsonic_iface_Microsoft_AspNetCore_Razor_TagHelpers_ITagHelper: never;
543
550
  readonly __tsonic_iface_Microsoft_AspNetCore_Razor_TagHelpers_ITagHelperComponent: never;
544
551
 
545
- AppendVersion: Nullable_1<System_Internal.Boolean>;
552
+ get AppendVersion(): Nullable_1<System_Internal.Boolean>;
553
+ set AppendVersion(value: Nullable_1<System_Internal.Boolean> | boolean);
546
554
  FallbackSrc: string;
547
555
  FallbackSrcExclude: string;
548
556
  FallbackSrcInclude: string;
@@ -22,6 +22,7 @@ import type { IApiBehaviorMetadata, IClientErrorActionResult, ICompatibilitySwit
22
22
  import type { DefaultModelBindingMessageProvider, IMetadataDetailsProvider } from './Microsoft.AspNetCore.Mvc.ModelBinding.Metadata/internal/index.js';
23
23
  import type { ClientModelValidationContext, IClientModelValidator, IClientModelValidatorProvider, IModelValidatorProvider, IObjectModelValidator } from './Microsoft.AspNetCore.Mvc.ModelBinding.Validation/internal/index.js';
24
24
  import type { BindingSource, EmptyBodyBehavior, IBinderTypeProviderMetadata, IBindingSourceMetadata, IModelBinder, IModelBinderFactory, IModelBinderProvider, IModelMetadataProvider, IModelNameProvider, IPropertyFilterProvider, IRequestPredicateProvider, IValueProvider, IValueProviderFactory, ModelMetadata, ModelStateDictionary } from './Microsoft.AspNetCore.Mvc.ModelBinding/internal/index.js';
25
+ import type { CompiledPageActionDescriptor } from './Microsoft.AspNetCore.Mvc.RazorPages/internal/index.js';
25
26
  import type { ViewContext } from './Microsoft.AspNetCore.Mvc.Rendering/internal/index.js';
26
27
  import type { HttpMethodAttribute, IActionHttpMethodProvider, IRouteTemplateProvider, IRouteValueProvider, RouteValueAttribute, UrlActionContext, UrlRouteContext } from './Microsoft.AspNetCore.Mvc.Routing/internal/index.js';
27
28
  import type { ContentViewComponentResult, ViewComponentContext, ViewViewComponentResult } from './Microsoft.AspNetCore.Mvc.ViewComponents/internal/index.js';
@@ -112,8 +112,10 @@ export interface OutputCacheContext$instance {
112
112
  readonly CacheVaryByRules: CacheVaryByRules;
113
113
  EnableOutputCaching: boolean;
114
114
  HttpContext: HttpContext;
115
- ResponseExpirationTimeSpan: Nullable_1<TimeSpan>;
116
- ResponseTime: Nullable_1<DateTimeOffset>;
115
+ get ResponseExpirationTimeSpan(): Nullable_1<TimeSpan>;
116
+ set ResponseExpirationTimeSpan(value: Nullable_1<TimeSpan> | TimeSpan);
117
+ get ResponseTime(): Nullable_1<DateTimeOffset>;
118
+ set ResponseTime(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
117
119
  readonly Tags: HashSet_1<System_Internal.String>;
118
120
  }
119
121
 
@@ -552,9 +552,12 @@ export type LinkGenerator = LinkGenerator$instance;
552
552
  export interface LinkOptions$instance {
553
553
  readonly __tsonic_type_Microsoft_AspNetCore_Routing_LinkOptions: never;
554
554
 
555
- AppendTrailingSlash: Nullable_1<System_Internal.Boolean>;
556
- LowercaseQueryStrings: Nullable_1<System_Internal.Boolean>;
557
- LowercaseUrls: Nullable_1<System_Internal.Boolean>;
555
+ get AppendTrailingSlash(): Nullable_1<System_Internal.Boolean>;
556
+ set AppendTrailingSlash(value: Nullable_1<System_Internal.Boolean> | boolean);
557
+ get LowercaseQueryStrings(): Nullable_1<System_Internal.Boolean>;
558
+ set LowercaseQueryStrings(value: Nullable_1<System_Internal.Boolean> | boolean);
559
+ get LowercaseUrls(): Nullable_1<System_Internal.Boolean>;
560
+ set LowercaseUrls(value: Nullable_1<System_Internal.Boolean> | boolean);
558
561
  }
559
562
 
560
563
 
@@ -194,8 +194,10 @@ export interface HttpSysOptions$instance {
194
194
  EnableResponseCaching: boolean;
195
195
  Http503Verbosity: Http503VerbosityLevel;
196
196
  MaxAccepts: int;
197
- MaxConnections: Nullable_1<System_Internal.Int64>;
198
- MaxRequestBodySize: Nullable_1<System_Internal.Int64>;
197
+ get MaxConnections(): Nullable_1<System_Internal.Int64>;
198
+ set MaxConnections(value: Nullable_1<System_Internal.Int64> | long);
199
+ get MaxRequestBodySize(): Nullable_1<System_Internal.Int64>;
200
+ set MaxRequestBodySize(value: Nullable_1<System_Internal.Int64> | long);
199
201
  RequestQueueLimit: long;
200
202
  RequestQueueMode: RequestQueueMode;
201
203
  get RequestQueueName(): string | undefined;
@@ -119,14 +119,19 @@ export interface KestrelServerLimits$instance {
119
119
  readonly Http2: Http2Limits;
120
120
  readonly Http3: Http3Limits;
121
121
  KeepAliveTimeout: TimeSpan;
122
- MaxConcurrentConnections: Nullable_1<System_Internal.Int64>;
123
- MaxConcurrentUpgradedConnections: Nullable_1<System_Internal.Int64>;
124
- MaxRequestBodySize: Nullable_1<System_Internal.Int64>;
125
- MaxRequestBufferSize: Nullable_1<System_Internal.Int64>;
122
+ get MaxConcurrentConnections(): Nullable_1<System_Internal.Int64>;
123
+ set MaxConcurrentConnections(value: Nullable_1<System_Internal.Int64> | long);
124
+ get MaxConcurrentUpgradedConnections(): Nullable_1<System_Internal.Int64>;
125
+ set MaxConcurrentUpgradedConnections(value: Nullable_1<System_Internal.Int64> | long);
126
+ get MaxRequestBodySize(): Nullable_1<System_Internal.Int64>;
127
+ set MaxRequestBodySize(value: Nullable_1<System_Internal.Int64> | long);
128
+ get MaxRequestBufferSize(): Nullable_1<System_Internal.Int64>;
129
+ set MaxRequestBufferSize(value: Nullable_1<System_Internal.Int64> | long);
126
130
  MaxRequestHeaderCount: int;
127
131
  MaxRequestHeadersTotalSize: int;
128
132
  MaxRequestLineSize: int;
129
- MaxResponseBufferSize: Nullable_1<System_Internal.Int64>;
133
+ get MaxResponseBufferSize(): Nullable_1<System_Internal.Int64>;
134
+ set MaxResponseBufferSize(value: Nullable_1<System_Internal.Int64> | long);
130
135
  get MinRequestBodyDataRate(): MinDataRate | undefined;
131
136
  set MinRequestBodyDataRate(value: MinDataRate | undefined);
132
137
  get MinResponseDataRate(): MinDataRate | undefined;
@@ -34,8 +34,10 @@ export interface NamedPipeTransportOptions$instance {
34
34
  CreateNamedPipeServerStream: Func_2<CreateNamedPipeServerStreamContext, NamedPipeServerStream>;
35
35
  CurrentUserOnly: boolean;
36
36
  ListenerQueueCount: int;
37
- MaxReadBufferSize: Nullable_1<System_Internal.Int64>;
38
- MaxWriteBufferSize: Nullable_1<System_Internal.Int64>;
37
+ get MaxReadBufferSize(): Nullable_1<System_Internal.Int64>;
38
+ set MaxReadBufferSize(value: Nullable_1<System_Internal.Int64> | long);
39
+ get MaxWriteBufferSize(): Nullable_1<System_Internal.Int64>;
40
+ set MaxWriteBufferSize(value: Nullable_1<System_Internal.Int64> | long);
39
41
  get PipeSecurity(): PipeSecurity | undefined;
40
42
  set PipeSecurity(value: PipeSecurity | undefined);
41
43
  }
@@ -16,9 +16,11 @@ export interface QuicTransportOptions$instance {
16
16
  DefaultCloseErrorCode: long;
17
17
  DefaultStreamErrorCode: long;
18
18
  MaxBidirectionalStreamCount: int;
19
- MaxReadBufferSize: Nullable_1<System_Internal.Int64>;
19
+ get MaxReadBufferSize(): Nullable_1<System_Internal.Int64>;
20
+ set MaxReadBufferSize(value: Nullable_1<System_Internal.Int64> | long);
20
21
  MaxUnidirectionalStreamCount: int;
21
- MaxWriteBufferSize: Nullable_1<System_Internal.Int64>;
22
+ get MaxWriteBufferSize(): Nullable_1<System_Internal.Int64>;
23
+ set MaxWriteBufferSize(value: Nullable_1<System_Internal.Int64> | long);
22
24
  }
23
25
 
24
26
 
@@ -38,8 +38,10 @@ export interface SocketConnectionFactoryOptions$instance {
38
38
  readonly __tsonic_type_Microsoft_AspNetCore_Server_Kestrel_Transport_Sockets_SocketConnectionFactoryOptions: never;
39
39
 
40
40
  IOQueueCount: int;
41
- MaxReadBufferSize: Nullable_1<System_Internal.Int64>;
42
- MaxWriteBufferSize: Nullable_1<System_Internal.Int64>;
41
+ get MaxReadBufferSize(): Nullable_1<System_Internal.Int64>;
42
+ set MaxReadBufferSize(value: Nullable_1<System_Internal.Int64> | long);
43
+ get MaxWriteBufferSize(): Nullable_1<System_Internal.Int64>;
44
+ set MaxWriteBufferSize(value: Nullable_1<System_Internal.Int64> | long);
43
45
  UnsafePreferInlineScheduling: boolean;
44
46
  WaitForDataBeforeAllocatingBuffer: boolean;
45
47
  }
@@ -82,8 +84,10 @@ export interface SocketTransportOptions$instance {
82
84
  Backlog: int;
83
85
  CreateBoundListenSocket: Func_2<EndPoint, Socket>;
84
86
  IOQueueCount: int;
85
- MaxReadBufferSize: Nullable_1<System_Internal.Int64>;
86
- MaxWriteBufferSize: Nullable_1<System_Internal.Int64>;
87
+ get MaxReadBufferSize(): Nullable_1<System_Internal.Int64>;
88
+ set MaxReadBufferSize(value: Nullable_1<System_Internal.Int64> | long);
89
+ get MaxWriteBufferSize(): Nullable_1<System_Internal.Int64>;
90
+ set MaxWriteBufferSize(value: Nullable_1<System_Internal.Int64> | long);
87
91
  NoDelay: boolean;
88
92
  UnsafePreferInlineScheduling: boolean;
89
93
  WaitForDataBeforeAllocatingBuffer: boolean;
@@ -433,7 +433,8 @@ export interface HubConnectionContextOptions$instance {
433
433
  ClientTimeoutInterval: TimeSpan;
434
434
  KeepAliveInterval: TimeSpan;
435
435
  MaximumParallelInvocations: int;
436
- MaximumReceiveMessageSize: Nullable_1<System_Internal.Int64>;
436
+ get MaximumReceiveMessageSize(): Nullable_1<System_Internal.Int64>;
437
+ set MaximumReceiveMessageSize(value: Nullable_1<System_Internal.Int64> | long);
437
438
  StreamBufferCapacity: int;
438
439
  }
439
440
 
@@ -588,15 +589,21 @@ export type HubMethodNameAttribute = HubMethodNameAttribute$instance;
588
589
  export interface HubOptions$instance {
589
590
  readonly __tsonic_type_Microsoft_AspNetCore_SignalR_HubOptions: never;
590
591
 
591
- ClientTimeoutInterval: Nullable_1<TimeSpan>;
592
+ get ClientTimeoutInterval(): Nullable_1<TimeSpan>;
593
+ set ClientTimeoutInterval(value: Nullable_1<TimeSpan> | TimeSpan);
592
594
  DisableImplicitFromServicesParameters: boolean;
593
- EnableDetailedErrors: Nullable_1<System_Internal.Boolean>;
594
- HandshakeTimeout: Nullable_1<TimeSpan>;
595
- KeepAliveInterval: Nullable_1<TimeSpan>;
595
+ get EnableDetailedErrors(): Nullable_1<System_Internal.Boolean>;
596
+ set EnableDetailedErrors(value: Nullable_1<System_Internal.Boolean> | boolean);
597
+ get HandshakeTimeout(): Nullable_1<TimeSpan>;
598
+ set HandshakeTimeout(value: Nullable_1<TimeSpan> | TimeSpan);
599
+ get KeepAliveInterval(): Nullable_1<TimeSpan>;
600
+ set KeepAliveInterval(value: Nullable_1<TimeSpan> | TimeSpan);
596
601
  MaximumParallelInvocationsPerClient: int;
597
- MaximumReceiveMessageSize: Nullable_1<System_Internal.Int64>;
602
+ get MaximumReceiveMessageSize(): Nullable_1<System_Internal.Int64>;
603
+ set MaximumReceiveMessageSize(value: Nullable_1<System_Internal.Int64> | long);
598
604
  StatefulReconnectBufferSize: long;
599
- StreamBufferCapacity: Nullable_1<System_Internal.Int32>;
605
+ get StreamBufferCapacity(): Nullable_1<System_Internal.Int32>;
606
+ set StreamBufferCapacity(value: Nullable_1<System_Internal.Int32> | int);
600
607
  get SupportedProtocols(): IList_1<System_Internal.String> | undefined;
601
608
  set SupportedProtocols(value: IList_1<System_Internal.String> | undefined);
602
609
  }
@@ -19,8 +19,10 @@ import type { IOptions_1 } from "@tsonic/microsoft-extensions/Microsoft.Extensio
19
19
  export interface ExtendedWebSocketAcceptContext$instance extends WebSocketAcceptContext {
20
20
  readonly __tsonic_type_Microsoft_AspNetCore_WebSockets_ExtendedWebSocketAcceptContext: never;
21
21
 
22
- KeepAliveInterval: Nullable_1<TimeSpan>;
23
- ReceiveBufferSize: Nullable_1<System_Internal.Int32>;
22
+ get KeepAliveInterval(): Nullable_1<TimeSpan>;
23
+ set KeepAliveInterval(value: Nullable_1<TimeSpan> | TimeSpan);
24
+ get ReceiveBufferSize(): Nullable_1<System_Internal.Int32>;
25
+ set ReceiveBufferSize(value: Nullable_1<System_Internal.Int32> | int);
24
26
  get SubProtocol(): string | undefined;
25
27
  set SubProtocol(value: string | undefined);
26
28
  }
@@ -352,7 +352,8 @@ export type HttpResponseStreamWriter = HttpResponseStreamWriter$instance;
352
352
  export interface MultipartReader$instance {
353
353
  readonly __tsonic_type_Microsoft_AspNetCore_WebUtilities_MultipartReader: never;
354
354
 
355
- BodyLengthLimit: Nullable_1<System_Internal.Int64>;
355
+ get BodyLengthLimit(): Nullable_1<System_Internal.Int64>;
356
+ set BodyLengthLimit(value: Nullable_1<System_Internal.Int64> | long);
356
357
  HeadersCountLimit: int;
357
358
  HeadersLengthLimit: int;
358
359
  ReadNextSectionAsync(cancellationToken?: CancellationToken): Task_1<MultipartSection | undefined>;
@@ -372,7 +373,8 @@ export type MultipartReader = MultipartReader$instance;
372
373
  export interface MultipartSection$instance {
373
374
  readonly __tsonic_type_Microsoft_AspNetCore_WebUtilities_MultipartSection: never;
374
375
 
375
- BaseStreamOffset: Nullable_1<System_Internal.Int64>;
376
+ get BaseStreamOffset(): Nullable_1<System_Internal.Int64>;
377
+ set BaseStreamOffset(value: Nullable_1<System_Internal.Int64> | long);
376
378
  Body: Stream;
377
379
  readonly ContentDisposition: string | undefined;
378
380
  readonly ContentType: string | undefined;
@@ -28,10 +28,13 @@ export interface CacheControlHeaderValue$instance {
28
28
  readonly __tsonic_type_Microsoft_Net_Http_Headers_CacheControlHeaderValue: never;
29
29
 
30
30
  readonly Extensions: IList_1<NameValueHeaderValue>;
31
- MaxAge: Nullable_1<TimeSpan>;
31
+ get MaxAge(): Nullable_1<TimeSpan>;
32
+ set MaxAge(value: Nullable_1<TimeSpan> | TimeSpan);
32
33
  MaxStale: boolean;
33
- MaxStaleLimit: Nullable_1<TimeSpan>;
34
- MinFresh: Nullable_1<TimeSpan>;
34
+ get MaxStaleLimit(): Nullable_1<TimeSpan>;
35
+ set MaxStaleLimit(value: Nullable_1<TimeSpan> | TimeSpan);
36
+ get MinFresh(): Nullable_1<TimeSpan>;
37
+ set MinFresh(value: Nullable_1<TimeSpan> | TimeSpan);
35
38
  MustRevalidate: boolean;
36
39
  NoCache: boolean;
37
40
  readonly NoCacheHeaders: ICollection_1<StringSegment>;
@@ -42,7 +45,8 @@ export interface CacheControlHeaderValue$instance {
42
45
  readonly PrivateHeaders: ICollection_1<StringSegment>;
43
46
  ProxyRevalidate: boolean;
44
47
  Public: boolean;
45
- SharedMaxAge: Nullable_1<TimeSpan>;
48
+ get SharedMaxAge(): Nullable_1<TimeSpan>;
49
+ set SharedMaxAge(value: Nullable_1<TimeSpan> | TimeSpan);
46
50
  Equals(obj: unknown): boolean;
47
51
  GetHashCode(): int;
48
52
  ToString(): string;
@@ -73,15 +77,19 @@ export type CacheControlHeaderValue = CacheControlHeaderValue$instance;
73
77
  export interface ContentDispositionHeaderValue$instance {
74
78
  readonly __tsonic_type_Microsoft_Net_Http_Headers_ContentDispositionHeaderValue: never;
75
79
 
76
- CreationDate: Nullable_1<DateTimeOffset>;
80
+ get CreationDate(): Nullable_1<DateTimeOffset>;
81
+ set CreationDate(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
77
82
  DispositionType: StringSegment;
78
83
  FileName: StringSegment;
79
84
  FileNameStar: StringSegment;
80
- ModificationDate: Nullable_1<DateTimeOffset>;
85
+ get ModificationDate(): Nullable_1<DateTimeOffset>;
86
+ set ModificationDate(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
81
87
  Name: StringSegment;
82
88
  readonly Parameters: IList_1<NameValueHeaderValue>;
83
- ReadDate: Nullable_1<DateTimeOffset>;
84
- Size: Nullable_1<System_Internal.Int64>;
89
+ get ReadDate(): Nullable_1<DateTimeOffset>;
90
+ set ReadDate(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
91
+ get Size(): Nullable_1<System_Internal.Int64>;
92
+ set Size(value: Nullable_1<System_Internal.Int64> | long);
85
93
  Equals(obj: unknown): boolean;
86
94
  GetHashCode(): int;
87
95
  SetHttpFileName(fileName: StringSegment): void;
@@ -102,11 +110,14 @@ export type ContentDispositionHeaderValue = ContentDispositionHeaderValue$instan
102
110
  export interface ContentRangeHeaderValue$instance {
103
111
  readonly __tsonic_type_Microsoft_Net_Http_Headers_ContentRangeHeaderValue: never;
104
112
 
105
- From: Nullable_1<System_Internal.Int64>;
113
+ get From(): Nullable_1<System_Internal.Int64>;
114
+ set From(value: Nullable_1<System_Internal.Int64> | long);
106
115
  readonly HasLength: boolean;
107
116
  readonly HasRange: boolean;
108
- Length: Nullable_1<System_Internal.Int64>;
109
- To: Nullable_1<System_Internal.Int64>;
117
+ get Length(): Nullable_1<System_Internal.Int64>;
118
+ set Length(value: Nullable_1<System_Internal.Int64> | long);
119
+ get To(): Nullable_1<System_Internal.Int64>;
120
+ set To(value: Nullable_1<System_Internal.Int64> | long);
110
121
  Unit: StringSegment;
111
122
  Equals(obj: unknown): boolean;
112
123
  GetHashCode(): int;
@@ -191,7 +202,8 @@ export interface MediaTypeHeaderValue$instance {
191
202
  readonly MatchesAllTypes: boolean;
192
203
  MediaType: StringSegment;
193
204
  readonly Parameters: IList_1<NameValueHeaderValue>;
194
- Quality: Nullable_1<System_Internal.Double>;
205
+ get Quality(): Nullable_1<System_Internal.Double>;
206
+ set Quality(value: Nullable_1<System_Internal.Double> | double);
195
207
  readonly SubType: StringSegment;
196
208
  readonly SubTypeWithoutSuffix: StringSegment;
197
209
  readonly Suffix: StringSegment;
@@ -332,10 +344,12 @@ export interface SetCookieHeaderValue$instance {
332
344
  readonly __tsonic_type_Microsoft_Net_Http_Headers_SetCookieHeaderValue: never;
333
345
 
334
346
  Domain: StringSegment;
335
- Expires: Nullable_1<DateTimeOffset>;
347
+ get Expires(): Nullable_1<DateTimeOffset>;
348
+ set Expires(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
336
349
  readonly Extensions: IList_1<StringSegment>;
337
350
  HttpOnly: boolean;
338
- MaxAge: Nullable_1<TimeSpan>;
351
+ get MaxAge(): Nullable_1<TimeSpan>;
352
+ set MaxAge(value: Nullable_1<TimeSpan> | TimeSpan);
339
353
  Name: StringSegment;
340
354
  Path: StringSegment;
341
355
  SameSite: SameSiteMode;
@@ -1601,9 +1601,9 @@ export interface __Ext_System_Security_Claims_ClaimsPrincipal {
1601
1601
 
1602
1602
  // Internal helper types for sticky extension scopes
1603
1603
  type __TsonicExtMapOf<T> = T extends { __tsonic_ext?: infer M } ? M : {};
1604
- type __TsonicMergeExtMaps<A, B> = Omit<A, keyof B> & B;
1604
+ type __TsonicMergeExtMaps<A, B> = A & B;
1605
1605
  type __TsonicWithExt<TShape, K extends string, TApplier> = { __tsonic_ext?: __TsonicMergeExtMaps<__TsonicExtMapOf<TShape>, { [P in K]: TApplier }> };
1606
- type __TsonicPreferExt<A, B> = Omit<A, keyof B> & B;
1606
+ type __TsonicPreferExt<A, B> = A & B;
1607
1607
 
1608
1608
  // Generic helper type for extension methods in namespace: Microsoft.AspNetCore.Authentication
1609
1609
  type __TsonicExtSurface_Microsoft_AspNetCore_Authentication<TShape> =
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsonic/aspnetcore",
3
- "version": "10.0.26",
3
+ "version": "10.0.31",
4
4
  "description": "TypeScript type definitions for Microsoft.AspNetCore.App shared framework for .NET 10",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -18,8 +18,8 @@
18
18
  "url": "https://github.com/tsoniclang/aspnetcore.git"
19
19
  },
20
20
  "peerDependencies": {
21
- "@tsonic/core": "10.0.26",
22
- "@tsonic/dotnet": "10.0.26",
23
- "@tsonic/microsoft-extensions": "10.0.26"
21
+ "@tsonic/core": "10.0.31",
22
+ "@tsonic/dotnet": "10.0.31",
23
+ "@tsonic/microsoft-extensions": "10.0.31"
24
24
  }
25
25
  }