@tsonic/dotnet 10.0.5 → 10.0.9
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.CSharp.RuntimeBinder/internal/index.d.ts +6 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +38 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +58 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +8 -0
- package/Microsoft.Win32/internal/index.d.ts +3 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +34 -0
- package/System/internal/index.d.ts +413 -159
- package/System.Buffers/internal/index.d.ts +24 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +4 -0
- package/System.Collections/internal/index.d.ts +35 -21
- package/System.Collections.Concurrent/internal/index.d.ts +17 -3
- package/System.Collections.Frozen/internal/index.d.ts +12 -0
- package/System.Collections.Generic/internal/index.d.ts +121 -33
- package/System.Collections.Immutable/internal/index.d.ts +44 -0
- package/System.Collections.ObjectModel/internal/index.d.ts +20 -6
- package/System.Collections.Specialized/internal/index.d.ts +30 -6
- package/System.ComponentModel/internal/index.d.ts +269 -21
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +73 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +47 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +22 -0
- package/System.Data/internal/index.d.ts +110 -18
- package/System.Data.Common/internal/index.d.ts +64 -30
- package/System.Data.SqlTypes/internal/index.d.ts +58 -48
- package/System.Diagnostics/internal/index.d.ts +143 -9
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +26 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +31 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +8 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +40 -6
- package/System.Drawing/internal/index.d.ts +24 -0
- package/System.Dynamic/internal/index.d.ts +37 -5
- package/System.Formats.Asn1/internal/index.d.ts +13 -3
- package/System.Formats.Tar/internal/index.d.ts +20 -6
- package/System.Globalization/internal/index.d.ts +64 -18
- package/System.IO/internal/index.d.ts +74 -18
- package/System.IO.Compression/internal/index.d.ts +25 -9
- package/System.IO.Enumeration/internal/index.d.ts +6 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +9 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +6 -0
- package/System.IO.Pipelines/internal/index.d.ts +18 -2
- package/System.IO.Pipes/internal/index.d.ts +16 -0
- package/System.Linq/internal/index.d.ts +17 -3
- package/System.Linq.Expressions/internal/index.d.ts +86 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +109 -19
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +50 -0
- package/System.Net.Http.Headers/internal/index.d.ts +78 -60
- package/System.Net.Http.Json/internal/index.d.ts +2 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +31 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +62 -0
- package/System.Net.Quic/internal/index.d.ts +22 -6
- package/System.Net.Security/internal/index.d.ts +27 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +38 -6
- package/System.Net.WebSockets/internal/index.d.ts +23 -3
- package/System.Numerics/internal/index.d.ts +24 -6
- package/System.Reflection/internal/index.d.ts +134 -30
- package/System.Reflection.Emit/internal/index.d.ts +45 -9
- package/System.Reflection.Metadata/internal/index.d.ts +321 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +76 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +37 -3
- package/System.Resources/internal/index.d.ts +16 -0
- package/System.Runtime/internal/index.d.ts +12 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +275 -33
- package/System.Runtime.ConstrainedExecution/internal/index.d.ts +6 -0
- package/System.Runtime.ExceptionServices/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices/internal/index.d.ts +174 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +40 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +55 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +57 -12
- package/System.Runtime.InteropServices.ObjectiveC/internal/index.d.ts +2 -0
- package/System.Runtime.InteropServices.Swift/internal/index.d.ts +8 -0
- package/System.Runtime.Intrinsics/internal/index.d.ts +12 -12
- package/System.Runtime.Intrinsics.Arm/internal/index.d.ts +40 -0
- package/System.Runtime.Intrinsics.Wasm/internal/index.d.ts +2 -0
- package/System.Runtime.Intrinsics.X86/internal/index.d.ts +148 -0
- package/System.Runtime.Loader/internal/index.d.ts +7 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +75 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +3 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +4 -0
- package/System.Runtime.Versioning/internal/index.d.ts +26 -0
- package/System.Security/internal/index.d.ts +28 -6
- package/System.Security.AccessControl/internal/index.d.ts +94 -0
- package/System.Security.Authentication/internal/index.d.ts +4 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +9 -3
- package/System.Security.Claims/internal/index.d.ts +8 -6
- package/System.Security.Cryptography/internal/index.d.ts +298 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +69 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +4 -0
- package/System.Security.Principal/internal/index.d.ts +19 -5
- package/System.Text/internal/index.d.ts +68 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +32 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +10 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +54 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +23 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +33 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +108 -24
- package/System.Threading.Channels/internal/index.d.ts +18 -0
- package/System.Threading.Tasks/internal/index.d.ts +34 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +32 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +2 -0
- package/System.Timers/internal/index.d.ts +7 -3
- package/System.Transactions/internal/index.d.ts +37 -15
- package/System.Web/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +106 -18
- package/System.Xml.Linq/internal/index.d.ts +41 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +148 -0
- package/System.Xml.Serialization/internal/index.d.ts +116 -0
- package/System.Xml.XPath/internal/index.d.ts +14 -6
- package/System.Xml.Xsl/internal/index.d.ts +16 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +88 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -76,6 +76,8 @@ export type HeaderEncodingSelector_1<TContext> = (headerName: string, context: T
|
|
|
76
76
|
|
|
77
77
|
|
|
78
78
|
export interface HttpRequestOptionsKey_1$instance<TValue> {
|
|
79
|
+
readonly __tsonic_type_System_Net_Http_HttpRequestOptionsKey_1: never;
|
|
80
|
+
|
|
79
81
|
readonly Key: string;
|
|
80
82
|
}
|
|
81
83
|
|
|
@@ -88,6 +90,8 @@ export const HttpRequestOptionsKey_1: {
|
|
|
88
90
|
export type HttpRequestOptionsKey_1<TValue> = HttpRequestOptionsKey_1$instance<TValue>;
|
|
89
91
|
|
|
90
92
|
export interface ByteArrayContent$instance extends HttpContent$instance {
|
|
93
|
+
readonly __tsonic_type_System_Net_Http_ByteArrayContent: never;
|
|
94
|
+
|
|
91
95
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
92
96
|
|
|
93
97
|
CreateContentReadStream(cancellationToken: CancellationToken): Stream;
|
|
@@ -117,6 +121,8 @@ export type ByteArrayContent = ByteArrayContent$instance & __ByteArrayContent$vi
|
|
|
117
121
|
|
|
118
122
|
|
|
119
123
|
export interface DelegatingHandler$instance extends HttpMessageHandler$instance {
|
|
124
|
+
readonly __tsonic_type_System_Net_Http_DelegatingHandler: never;
|
|
125
|
+
|
|
120
126
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
121
127
|
|
|
122
128
|
get InnerHandler(): HttpMessageHandler | undefined;
|
|
@@ -141,6 +147,8 @@ export type DelegatingHandler = DelegatingHandler$instance & __DelegatingHandler
|
|
|
141
147
|
|
|
142
148
|
|
|
143
149
|
export interface FormUrlEncodedContent$instance extends ByteArrayContent$instance {
|
|
150
|
+
readonly __tsonic_type_System_Net_Http_FormUrlEncodedContent: never;
|
|
151
|
+
|
|
144
152
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
145
153
|
|
|
146
154
|
Dispose(): void;
|
|
@@ -163,6 +171,8 @@ export type FormUrlEncodedContent = FormUrlEncodedContent$instance & __FormUrlEn
|
|
|
163
171
|
|
|
164
172
|
|
|
165
173
|
export interface HttpClient$instance extends HttpMessageInvoker$instance {
|
|
174
|
+
readonly __tsonic_type_System_Net_Http_HttpClient: never;
|
|
175
|
+
|
|
166
176
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
167
177
|
|
|
168
178
|
get BaseAddress(): Uri | undefined;
|
|
@@ -233,6 +243,8 @@ export type HttpClient = HttpClient$instance & __HttpClient$views;
|
|
|
233
243
|
|
|
234
244
|
|
|
235
245
|
export interface HttpClientHandler$instance extends HttpMessageHandler$instance {
|
|
246
|
+
readonly __tsonic_type_System_Net_Http_HttpClientHandler: never;
|
|
247
|
+
|
|
236
248
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
237
249
|
|
|
238
250
|
AllowAutoRedirect: boolean;
|
|
@@ -285,6 +297,8 @@ export type HttpClientHandler = HttpClientHandler$instance & __HttpClientHandler
|
|
|
285
297
|
|
|
286
298
|
|
|
287
299
|
export interface HttpContent$instance {
|
|
300
|
+
readonly __tsonic_type_System_Net_Http_HttpContent: never;
|
|
301
|
+
|
|
288
302
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
289
303
|
|
|
290
304
|
readonly Headers: HttpContentHeaders;
|
|
@@ -329,6 +343,8 @@ export type HttpContent = HttpContent$instance & __HttpContent$views;
|
|
|
329
343
|
|
|
330
344
|
|
|
331
345
|
export interface HttpIOException$instance extends IOException {
|
|
346
|
+
readonly __tsonic_type_System_Net_Http_HttpIOException: never;
|
|
347
|
+
|
|
332
348
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
333
349
|
|
|
334
350
|
readonly HttpRequestError: HttpRequestError;
|
|
@@ -350,6 +366,8 @@ export type HttpIOException = HttpIOException$instance & __HttpIOException$views
|
|
|
350
366
|
|
|
351
367
|
|
|
352
368
|
export interface HttpMessageHandler$instance {
|
|
369
|
+
readonly __tsonic_type_System_Net_Http_HttpMessageHandler: never;
|
|
370
|
+
|
|
353
371
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
354
372
|
|
|
355
373
|
Dispose(disposing: boolean): void;
|
|
@@ -371,6 +389,8 @@ export type HttpMessageHandler = HttpMessageHandler$instance & __HttpMessageHand
|
|
|
371
389
|
|
|
372
390
|
|
|
373
391
|
export interface HttpMessageInvoker$instance {
|
|
392
|
+
readonly __tsonic_type_System_Net_Http_HttpMessageInvoker: never;
|
|
393
|
+
|
|
374
394
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
375
395
|
|
|
376
396
|
Dispose(): void;
|
|
@@ -394,6 +414,8 @@ export type HttpMessageInvoker = HttpMessageInvoker$instance & __HttpMessageInvo
|
|
|
394
414
|
|
|
395
415
|
|
|
396
416
|
export interface HttpMethod$instance {
|
|
417
|
+
readonly __tsonic_type_System_Net_Http_HttpMethod: never;
|
|
418
|
+
|
|
397
419
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
398
420
|
|
|
399
421
|
readonly Method: string;
|
|
@@ -431,6 +453,8 @@ export type HttpMethod = HttpMethod$instance & __HttpMethod$views;
|
|
|
431
453
|
|
|
432
454
|
|
|
433
455
|
export interface HttpProtocolException$instance extends HttpIOException$instance {
|
|
456
|
+
readonly __tsonic_type_System_Net_Http_HttpProtocolException: never;
|
|
457
|
+
|
|
434
458
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
435
459
|
|
|
436
460
|
readonly ErrorCode: long;
|
|
@@ -451,6 +475,8 @@ export type HttpProtocolException = HttpProtocolException$instance & __HttpProto
|
|
|
451
475
|
|
|
452
476
|
|
|
453
477
|
export interface HttpRequestException$instance extends Exception {
|
|
478
|
+
readonly __tsonic_type_System_Net_Http_HttpRequestException: never;
|
|
479
|
+
|
|
454
480
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
455
481
|
|
|
456
482
|
readonly HttpRequestError: HttpRequestError;
|
|
@@ -476,6 +502,8 @@ export type HttpRequestException = HttpRequestException$instance & __HttpRequest
|
|
|
476
502
|
|
|
477
503
|
|
|
478
504
|
export interface HttpRequestMessage$instance {
|
|
505
|
+
readonly __tsonic_type_System_Net_Http_HttpRequestMessage: never;
|
|
506
|
+
|
|
479
507
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
480
508
|
|
|
481
509
|
get Content(): HttpContent | undefined;
|
|
@@ -509,6 +537,8 @@ export type HttpRequestMessage = HttpRequestMessage$instance & __HttpRequestMess
|
|
|
509
537
|
|
|
510
538
|
|
|
511
539
|
export interface HttpRequestOptions$instance {
|
|
540
|
+
readonly __tsonic_type_System_Net_Http_HttpRequestOptions: never;
|
|
541
|
+
|
|
512
542
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
513
543
|
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
514
544
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
@@ -539,6 +569,8 @@ export type HttpRequestOptions = HttpRequestOptions$instance & __HttpRequestOpti
|
|
|
539
569
|
|
|
540
570
|
|
|
541
571
|
export interface HttpResponseMessage$instance {
|
|
572
|
+
readonly __tsonic_type_System_Net_Http_HttpResponseMessage: never;
|
|
573
|
+
|
|
542
574
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
543
575
|
|
|
544
576
|
Content: HttpContent;
|
|
@@ -572,6 +604,8 @@ export type HttpResponseMessage = HttpResponseMessage$instance & __HttpResponseM
|
|
|
572
604
|
|
|
573
605
|
|
|
574
606
|
export interface MessageProcessingHandler$instance extends DelegatingHandler$instance {
|
|
607
|
+
readonly __tsonic_type_System_Net_Http_MessageProcessingHandler: never;
|
|
608
|
+
|
|
575
609
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
576
610
|
|
|
577
611
|
Dispose(disposing: boolean): void;
|
|
@@ -596,6 +630,8 @@ export type MessageProcessingHandler = MessageProcessingHandler$instance & __Mes
|
|
|
596
630
|
|
|
597
631
|
|
|
598
632
|
export interface MultipartContent$instance extends HttpContent$instance {
|
|
633
|
+
readonly __tsonic_type_System_Net_Http_MultipartContent: never;
|
|
634
|
+
|
|
599
635
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
600
636
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
601
637
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -635,6 +671,8 @@ export type MultipartContent = MultipartContent$instance & __MultipartContent$vi
|
|
|
635
671
|
|
|
636
672
|
|
|
637
673
|
export interface MultipartFormDataContent$instance extends MultipartContent$instance {
|
|
674
|
+
readonly __tsonic_type_System_Net_Http_MultipartFormDataContent: never;
|
|
675
|
+
|
|
638
676
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
639
677
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
640
678
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -665,6 +703,8 @@ export type MultipartFormDataContent = MultipartFormDataContent$instance & __Mul
|
|
|
665
703
|
|
|
666
704
|
|
|
667
705
|
export interface ReadOnlyMemoryContent$instance extends HttpContent$instance {
|
|
706
|
+
readonly __tsonic_type_System_Net_Http_ReadOnlyMemoryContent: never;
|
|
707
|
+
|
|
668
708
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
669
709
|
|
|
670
710
|
CreateContentReadStream(cancellationToken: CancellationToken): Stream;
|
|
@@ -693,6 +733,8 @@ export type ReadOnlyMemoryContent = ReadOnlyMemoryContent$instance & __ReadOnlyM
|
|
|
693
733
|
|
|
694
734
|
|
|
695
735
|
export interface SocketsHttpConnectionContext$instance {
|
|
736
|
+
readonly __tsonic_type_System_Net_Http_SocketsHttpConnectionContext: never;
|
|
737
|
+
|
|
696
738
|
readonly DnsEndPoint: DnsEndPoint;
|
|
697
739
|
readonly InitialRequestMessage: HttpRequestMessage;
|
|
698
740
|
}
|
|
@@ -705,6 +747,8 @@ export const SocketsHttpConnectionContext: {
|
|
|
705
747
|
export type SocketsHttpConnectionContext = SocketsHttpConnectionContext$instance;
|
|
706
748
|
|
|
707
749
|
export interface SocketsHttpHandler$instance extends HttpMessageHandler$instance {
|
|
750
|
+
readonly __tsonic_type_System_Net_Http_SocketsHttpHandler: never;
|
|
751
|
+
|
|
708
752
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
709
753
|
|
|
710
754
|
get ActivityHeadersPropagator(): DistributedContextPropagator | undefined;
|
|
@@ -769,6 +813,8 @@ export type SocketsHttpHandler = SocketsHttpHandler$instance & __SocketsHttpHand
|
|
|
769
813
|
|
|
770
814
|
|
|
771
815
|
export interface SocketsHttpPlaintextStreamFilterContext$instance {
|
|
816
|
+
readonly __tsonic_type_System_Net_Http_SocketsHttpPlaintextStreamFilterContext: never;
|
|
817
|
+
|
|
772
818
|
readonly InitialRequestMessage: HttpRequestMessage;
|
|
773
819
|
readonly NegotiatedHttpVersion: Version;
|
|
774
820
|
readonly PlaintextStream: Stream;
|
|
@@ -782,6 +828,8 @@ export const SocketsHttpPlaintextStreamFilterContext: {
|
|
|
782
828
|
export type SocketsHttpPlaintextStreamFilterContext = SocketsHttpPlaintextStreamFilterContext$instance;
|
|
783
829
|
|
|
784
830
|
export interface StreamContent$instance extends HttpContent$instance {
|
|
831
|
+
readonly __tsonic_type_System_Net_Http_StreamContent: never;
|
|
832
|
+
|
|
785
833
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
786
834
|
|
|
787
835
|
CreateContentReadStream(cancellationToken: CancellationToken): Stream;
|
|
@@ -811,6 +859,8 @@ export type StreamContent = StreamContent$instance & __StreamContent$views;
|
|
|
811
859
|
|
|
812
860
|
|
|
813
861
|
export interface StringContent$instance extends ByteArrayContent$instance {
|
|
862
|
+
readonly __tsonic_type_System_Net_Http_StringContent: never;
|
|
863
|
+
|
|
814
864
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
815
865
|
|
|
816
866
|
Dispose(): void;
|
|
@@ -17,6 +17,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
17
17
|
import type { Boolean as ClrBoolean, Byte, DateTimeOffset, Double, ICloneable, IDisposable, Int32, Int64, Nullable_1, Object as ClrObject, String as ClrString, TimeSpan, Type, Uri, ValueType, Void } from "../../System/internal/index.js";
|
|
18
18
|
|
|
19
19
|
export interface HeaderStringValues$instance {
|
|
20
|
+
readonly __tsonic_type_System_Net_Http_Headers_HeaderStringValues: never;
|
|
21
|
+
|
|
20
22
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
21
23
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
22
24
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -42,6 +44,8 @@ export type HeaderStringValues = HeaderStringValues$instance & __HeaderStringVal
|
|
|
42
44
|
|
|
43
45
|
|
|
44
46
|
export interface HeaderStringValues_Enumerator$instance extends IDisposable {
|
|
47
|
+
readonly __tsonic_type_System_Net_Http_Headers_HeaderStringValues_Enumerator: never;
|
|
48
|
+
|
|
45
49
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
46
50
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
47
51
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -67,6 +71,8 @@ export type HeaderStringValues_Enumerator = HeaderStringValues_Enumerator$instan
|
|
|
67
71
|
|
|
68
72
|
|
|
69
73
|
export interface HttpHeadersNonValidated$instance {
|
|
74
|
+
readonly __tsonic_type_System_Net_Http_Headers_HttpHeadersNonValidated: never;
|
|
75
|
+
|
|
70
76
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
71
77
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
72
78
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyDictionary_2: never;
|
|
@@ -96,6 +102,8 @@ export type HttpHeadersNonValidated = HttpHeadersNonValidated$instance & __HttpH
|
|
|
96
102
|
|
|
97
103
|
|
|
98
104
|
export interface HttpHeadersNonValidated_Enumerator$instance extends IDisposable {
|
|
105
|
+
readonly __tsonic_type_System_Net_Http_Headers_HttpHeadersNonValidated_Enumerator: never;
|
|
106
|
+
|
|
99
107
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
100
108
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
101
109
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -120,7 +128,9 @@ export interface __HttpHeadersNonValidated_Enumerator$views {
|
|
|
120
128
|
export type HttpHeadersNonValidated_Enumerator = HttpHeadersNonValidated_Enumerator$instance & __HttpHeadersNonValidated_Enumerator$views;
|
|
121
129
|
|
|
122
130
|
|
|
123
|
-
export interface AuthenticationHeaderValue$instance {
|
|
131
|
+
export interface AuthenticationHeaderValue$instance extends System_Internal.ICloneable$instance {
|
|
132
|
+
readonly __tsonic_type_System_Net_Http_Headers_AuthenticationHeaderValue: never;
|
|
133
|
+
|
|
124
134
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
125
135
|
|
|
126
136
|
readonly Parameter: string | undefined;
|
|
@@ -143,12 +153,12 @@ export interface __AuthenticationHeaderValue$views {
|
|
|
143
153
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
144
154
|
}
|
|
145
155
|
|
|
146
|
-
export interface AuthenticationHeaderValue$instance extends System_Internal.ICloneable$instance {}
|
|
147
|
-
|
|
148
156
|
export type AuthenticationHeaderValue = AuthenticationHeaderValue$instance & __AuthenticationHeaderValue$views;
|
|
149
157
|
|
|
150
158
|
|
|
151
|
-
export interface CacheControlHeaderValue$instance {
|
|
159
|
+
export interface CacheControlHeaderValue$instance extends System_Internal.ICloneable$instance {
|
|
160
|
+
readonly __tsonic_type_System_Net_Http_Headers_CacheControlHeaderValue: never;
|
|
161
|
+
|
|
152
162
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
153
163
|
|
|
154
164
|
readonly Extensions: ICollection_1<NameValueHeaderValue>;
|
|
@@ -184,12 +194,12 @@ export interface __CacheControlHeaderValue$views {
|
|
|
184
194
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
185
195
|
}
|
|
186
196
|
|
|
187
|
-
export interface CacheControlHeaderValue$instance extends System_Internal.ICloneable$instance {}
|
|
188
|
-
|
|
189
197
|
export type CacheControlHeaderValue = CacheControlHeaderValue$instance & __CacheControlHeaderValue$views;
|
|
190
198
|
|
|
191
199
|
|
|
192
|
-
export interface ContentDispositionHeaderValue$instance {
|
|
200
|
+
export interface ContentDispositionHeaderValue$instance extends System_Internal.ICloneable$instance {
|
|
201
|
+
readonly __tsonic_type_System_Net_Http_Headers_ContentDispositionHeaderValue: never;
|
|
202
|
+
|
|
193
203
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
194
204
|
|
|
195
205
|
CreationDate: Nullable_1<DateTimeOffset>;
|
|
@@ -221,12 +231,12 @@ export interface __ContentDispositionHeaderValue$views {
|
|
|
221
231
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
222
232
|
}
|
|
223
233
|
|
|
224
|
-
export interface ContentDispositionHeaderValue$instance extends System_Internal.ICloneable$instance {}
|
|
225
|
-
|
|
226
234
|
export type ContentDispositionHeaderValue = ContentDispositionHeaderValue$instance & __ContentDispositionHeaderValue$views;
|
|
227
235
|
|
|
228
236
|
|
|
229
|
-
export interface ContentRangeHeaderValue$instance {
|
|
237
|
+
export interface ContentRangeHeaderValue$instance extends System_Internal.ICloneable$instance {
|
|
238
|
+
readonly __tsonic_type_System_Net_Http_Headers_ContentRangeHeaderValue: never;
|
|
239
|
+
|
|
230
240
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
231
241
|
|
|
232
242
|
readonly From: Nullable_1<System_Internal.Int64>;
|
|
@@ -254,12 +264,12 @@ export interface __ContentRangeHeaderValue$views {
|
|
|
254
264
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
255
265
|
}
|
|
256
266
|
|
|
257
|
-
export interface ContentRangeHeaderValue$instance extends System_Internal.ICloneable$instance {}
|
|
258
|
-
|
|
259
267
|
export type ContentRangeHeaderValue = ContentRangeHeaderValue$instance & __ContentRangeHeaderValue$views;
|
|
260
268
|
|
|
261
269
|
|
|
262
|
-
export interface EntityTagHeaderValue$instance {
|
|
270
|
+
export interface EntityTagHeaderValue$instance extends System_Internal.ICloneable$instance {
|
|
271
|
+
readonly __tsonic_type_System_Net_Http_Headers_EntityTagHeaderValue: never;
|
|
272
|
+
|
|
263
273
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
264
274
|
|
|
265
275
|
IsWeak: boolean;
|
|
@@ -283,12 +293,12 @@ export interface __EntityTagHeaderValue$views {
|
|
|
283
293
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
284
294
|
}
|
|
285
295
|
|
|
286
|
-
export interface EntityTagHeaderValue$instance extends System_Internal.ICloneable$instance {}
|
|
287
|
-
|
|
288
296
|
export type EntityTagHeaderValue = EntityTagHeaderValue$instance & __EntityTagHeaderValue$views;
|
|
289
297
|
|
|
290
298
|
|
|
291
299
|
export interface HttpContentHeaders$instance extends HttpHeaders$instance {
|
|
300
|
+
readonly __tsonic_type_System_Net_Http_Headers_HttpContentHeaders: never;
|
|
301
|
+
|
|
292
302
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
293
303
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
294
304
|
|
|
@@ -326,6 +336,8 @@ export type HttpContentHeaders = HttpContentHeaders$instance & __HttpContentHead
|
|
|
326
336
|
|
|
327
337
|
|
|
328
338
|
export interface HttpHeaders$instance {
|
|
339
|
+
readonly __tsonic_type_System_Net_Http_Headers_HttpHeaders: never;
|
|
340
|
+
|
|
329
341
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
330
342
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
331
343
|
|
|
@@ -357,6 +369,8 @@ export type HttpHeaders = HttpHeaders$instance & __HttpHeaders$views;
|
|
|
357
369
|
|
|
358
370
|
|
|
359
371
|
export interface HttpHeaderValueCollection_1$instance<T> {
|
|
372
|
+
readonly __tsonic_type_System_Net_Http_Headers_HttpHeaderValueCollection_1: never;
|
|
373
|
+
|
|
360
374
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
361
375
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
362
376
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -389,6 +403,8 @@ export type HttpHeaderValueCollection_1<T> = HttpHeaderValueCollection_1$instanc
|
|
|
389
403
|
|
|
390
404
|
|
|
391
405
|
export interface HttpRequestHeaders$instance extends HttpHeaders$instance {
|
|
406
|
+
readonly __tsonic_type_System_Net_Http_Headers_HttpRequestHeaders: never;
|
|
407
|
+
|
|
392
408
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
393
409
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
394
410
|
|
|
@@ -451,6 +467,8 @@ export type HttpRequestHeaders = HttpRequestHeaders$instance & __HttpRequestHead
|
|
|
451
467
|
|
|
452
468
|
|
|
453
469
|
export interface HttpResponseHeaders$instance extends HttpHeaders$instance {
|
|
470
|
+
readonly __tsonic_type_System_Net_Http_Headers_HttpResponseHeaders: never;
|
|
471
|
+
|
|
454
472
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
455
473
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
456
474
|
|
|
@@ -495,7 +513,9 @@ export interface __HttpResponseHeaders$views {
|
|
|
495
513
|
export type HttpResponseHeaders = HttpResponseHeaders$instance & __HttpResponseHeaders$views;
|
|
496
514
|
|
|
497
515
|
|
|
498
|
-
export interface MediaTypeHeaderValue$instance {
|
|
516
|
+
export interface MediaTypeHeaderValue$instance extends System_Internal.ICloneable$instance {
|
|
517
|
+
readonly __tsonic_type_System_Net_Http_Headers_MediaTypeHeaderValue: never;
|
|
518
|
+
|
|
499
519
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
500
520
|
|
|
501
521
|
get CharSet(): string | undefined;
|
|
@@ -521,12 +541,12 @@ export interface __MediaTypeHeaderValue$views {
|
|
|
521
541
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
522
542
|
}
|
|
523
543
|
|
|
524
|
-
export interface MediaTypeHeaderValue$instance extends System_Internal.ICloneable$instance {}
|
|
525
|
-
|
|
526
544
|
export type MediaTypeHeaderValue = MediaTypeHeaderValue$instance & __MediaTypeHeaderValue$views;
|
|
527
545
|
|
|
528
546
|
|
|
529
|
-
export interface MediaTypeWithQualityHeaderValue$instance extends MediaTypeHeaderValue$instance {
|
|
547
|
+
export interface MediaTypeWithQualityHeaderValue$instance extends MediaTypeHeaderValue$instance, System_Internal.ICloneable$instance {
|
|
548
|
+
readonly __tsonic_type_System_Net_Http_Headers_MediaTypeWithQualityHeaderValue: never;
|
|
549
|
+
|
|
530
550
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
531
551
|
|
|
532
552
|
Quality: Nullable_1<System_Internal.Double>;
|
|
@@ -544,12 +564,12 @@ export interface __MediaTypeWithQualityHeaderValue$views {
|
|
|
544
564
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
545
565
|
}
|
|
546
566
|
|
|
547
|
-
export interface MediaTypeWithQualityHeaderValue$instance extends System_Internal.ICloneable$instance {}
|
|
548
|
-
|
|
549
567
|
export type MediaTypeWithQualityHeaderValue = MediaTypeWithQualityHeaderValue$instance & __MediaTypeWithQualityHeaderValue$views;
|
|
550
568
|
|
|
551
569
|
|
|
552
|
-
export interface NameValueHeaderValue$instance {
|
|
570
|
+
export interface NameValueHeaderValue$instance extends System_Internal.ICloneable$instance {
|
|
571
|
+
readonly __tsonic_type_System_Net_Http_Headers_NameValueHeaderValue: never;
|
|
572
|
+
|
|
553
573
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
554
574
|
|
|
555
575
|
readonly Name: string;
|
|
@@ -573,12 +593,12 @@ export interface __NameValueHeaderValue$views {
|
|
|
573
593
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
574
594
|
}
|
|
575
595
|
|
|
576
|
-
export interface NameValueHeaderValue$instance extends System_Internal.ICloneable$instance {}
|
|
577
|
-
|
|
578
596
|
export type NameValueHeaderValue = NameValueHeaderValue$instance & __NameValueHeaderValue$views;
|
|
579
597
|
|
|
580
598
|
|
|
581
|
-
export interface NameValueWithParametersHeaderValue$instance extends NameValueHeaderValue$instance {
|
|
599
|
+
export interface NameValueWithParametersHeaderValue$instance extends NameValueHeaderValue$instance, System_Internal.ICloneable$instance {
|
|
600
|
+
readonly __tsonic_type_System_Net_Http_Headers_NameValueWithParametersHeaderValue: never;
|
|
601
|
+
|
|
582
602
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
583
603
|
|
|
584
604
|
readonly Parameters: ICollection_1<NameValueHeaderValue>;
|
|
@@ -599,12 +619,12 @@ export interface __NameValueWithParametersHeaderValue$views {
|
|
|
599
619
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
600
620
|
}
|
|
601
621
|
|
|
602
|
-
export interface NameValueWithParametersHeaderValue$instance extends System_Internal.ICloneable$instance {}
|
|
603
|
-
|
|
604
622
|
export type NameValueWithParametersHeaderValue = NameValueWithParametersHeaderValue$instance & __NameValueWithParametersHeaderValue$views;
|
|
605
623
|
|
|
606
624
|
|
|
607
|
-
export interface ProductHeaderValue$instance {
|
|
625
|
+
export interface ProductHeaderValue$instance extends System_Internal.ICloneable$instance {
|
|
626
|
+
readonly __tsonic_type_System_Net_Http_Headers_ProductHeaderValue: never;
|
|
627
|
+
|
|
608
628
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
609
629
|
|
|
610
630
|
readonly Name: string;
|
|
@@ -627,12 +647,12 @@ export interface __ProductHeaderValue$views {
|
|
|
627
647
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
628
648
|
}
|
|
629
649
|
|
|
630
|
-
export interface ProductHeaderValue$instance extends System_Internal.ICloneable$instance {}
|
|
631
|
-
|
|
632
650
|
export type ProductHeaderValue = ProductHeaderValue$instance & __ProductHeaderValue$views;
|
|
633
651
|
|
|
634
652
|
|
|
635
|
-
export interface ProductInfoHeaderValue$instance {
|
|
653
|
+
export interface ProductInfoHeaderValue$instance extends System_Internal.ICloneable$instance {
|
|
654
|
+
readonly __tsonic_type_System_Net_Http_Headers_ProductInfoHeaderValue: never;
|
|
655
|
+
|
|
636
656
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
637
657
|
|
|
638
658
|
readonly Comment: string | undefined;
|
|
@@ -656,12 +676,12 @@ export interface __ProductInfoHeaderValue$views {
|
|
|
656
676
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
657
677
|
}
|
|
658
678
|
|
|
659
|
-
export interface ProductInfoHeaderValue$instance extends System_Internal.ICloneable$instance {}
|
|
660
|
-
|
|
661
679
|
export type ProductInfoHeaderValue = ProductInfoHeaderValue$instance & __ProductInfoHeaderValue$views;
|
|
662
680
|
|
|
663
681
|
|
|
664
|
-
export interface RangeConditionHeaderValue$instance {
|
|
682
|
+
export interface RangeConditionHeaderValue$instance extends System_Internal.ICloneable$instance {
|
|
683
|
+
readonly __tsonic_type_System_Net_Http_Headers_RangeConditionHeaderValue: never;
|
|
684
|
+
|
|
665
685
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
666
686
|
|
|
667
687
|
readonly Date: Nullable_1<DateTimeOffset>;
|
|
@@ -685,12 +705,12 @@ export interface __RangeConditionHeaderValue$views {
|
|
|
685
705
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
686
706
|
}
|
|
687
707
|
|
|
688
|
-
export interface RangeConditionHeaderValue$instance extends System_Internal.ICloneable$instance {}
|
|
689
|
-
|
|
690
708
|
export type RangeConditionHeaderValue = RangeConditionHeaderValue$instance & __RangeConditionHeaderValue$views;
|
|
691
709
|
|
|
692
710
|
|
|
693
|
-
export interface RangeHeaderValue$instance {
|
|
711
|
+
export interface RangeHeaderValue$instance extends System_Internal.ICloneable$instance {
|
|
712
|
+
readonly __tsonic_type_System_Net_Http_Headers_RangeHeaderValue: never;
|
|
713
|
+
|
|
694
714
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
695
715
|
|
|
696
716
|
readonly Ranges: ICollection_1<RangeItemHeaderValue>;
|
|
@@ -713,12 +733,12 @@ export interface __RangeHeaderValue$views {
|
|
|
713
733
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
714
734
|
}
|
|
715
735
|
|
|
716
|
-
export interface RangeHeaderValue$instance extends System_Internal.ICloneable$instance {}
|
|
717
|
-
|
|
718
736
|
export type RangeHeaderValue = RangeHeaderValue$instance & __RangeHeaderValue$views;
|
|
719
737
|
|
|
720
738
|
|
|
721
|
-
export interface RangeItemHeaderValue$instance {
|
|
739
|
+
export interface RangeItemHeaderValue$instance extends System_Internal.ICloneable$instance {
|
|
740
|
+
readonly __tsonic_type_System_Net_Http_Headers_RangeItemHeaderValue: never;
|
|
741
|
+
|
|
722
742
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
723
743
|
|
|
724
744
|
readonly From: Nullable_1<System_Internal.Int64>;
|
|
@@ -738,12 +758,12 @@ export interface __RangeItemHeaderValue$views {
|
|
|
738
758
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
739
759
|
}
|
|
740
760
|
|
|
741
|
-
export interface RangeItemHeaderValue$instance extends System_Internal.ICloneable$instance {}
|
|
742
|
-
|
|
743
761
|
export type RangeItemHeaderValue = RangeItemHeaderValue$instance & __RangeItemHeaderValue$views;
|
|
744
762
|
|
|
745
763
|
|
|
746
|
-
export interface RetryConditionHeaderValue$instance {
|
|
764
|
+
export interface RetryConditionHeaderValue$instance extends System_Internal.ICloneable$instance {
|
|
765
|
+
readonly __tsonic_type_System_Net_Http_Headers_RetryConditionHeaderValue: never;
|
|
766
|
+
|
|
747
767
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
748
768
|
|
|
749
769
|
readonly Date: Nullable_1<DateTimeOffset>;
|
|
@@ -766,12 +786,12 @@ export interface __RetryConditionHeaderValue$views {
|
|
|
766
786
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
767
787
|
}
|
|
768
788
|
|
|
769
|
-
export interface RetryConditionHeaderValue$instance extends System_Internal.ICloneable$instance {}
|
|
770
|
-
|
|
771
789
|
export type RetryConditionHeaderValue = RetryConditionHeaderValue$instance & __RetryConditionHeaderValue$views;
|
|
772
790
|
|
|
773
791
|
|
|
774
|
-
export interface StringWithQualityHeaderValue$instance {
|
|
792
|
+
export interface StringWithQualityHeaderValue$instance extends System_Internal.ICloneable$instance {
|
|
793
|
+
readonly __tsonic_type_System_Net_Http_Headers_StringWithQualityHeaderValue: never;
|
|
794
|
+
|
|
775
795
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
776
796
|
|
|
777
797
|
readonly Quality: Nullable_1<System_Internal.Double>;
|
|
@@ -794,12 +814,12 @@ export interface __StringWithQualityHeaderValue$views {
|
|
|
794
814
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
795
815
|
}
|
|
796
816
|
|
|
797
|
-
export interface StringWithQualityHeaderValue$instance extends System_Internal.ICloneable$instance {}
|
|
798
|
-
|
|
799
817
|
export type StringWithQualityHeaderValue = StringWithQualityHeaderValue$instance & __StringWithQualityHeaderValue$views;
|
|
800
818
|
|
|
801
819
|
|
|
802
|
-
export interface TransferCodingHeaderValue$instance {
|
|
820
|
+
export interface TransferCodingHeaderValue$instance extends System_Internal.ICloneable$instance {
|
|
821
|
+
readonly __tsonic_type_System_Net_Http_Headers_TransferCodingHeaderValue: never;
|
|
822
|
+
|
|
803
823
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
804
824
|
|
|
805
825
|
readonly Parameters: ICollection_1<NameValueHeaderValue>;
|
|
@@ -821,12 +841,12 @@ export interface __TransferCodingHeaderValue$views {
|
|
|
821
841
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
822
842
|
}
|
|
823
843
|
|
|
824
|
-
export interface TransferCodingHeaderValue$instance extends System_Internal.ICloneable$instance {}
|
|
825
|
-
|
|
826
844
|
export type TransferCodingHeaderValue = TransferCodingHeaderValue$instance & __TransferCodingHeaderValue$views;
|
|
827
845
|
|
|
828
846
|
|
|
829
|
-
export interface TransferCodingWithQualityHeaderValue$instance extends TransferCodingHeaderValue$instance {
|
|
847
|
+
export interface TransferCodingWithQualityHeaderValue$instance extends TransferCodingHeaderValue$instance, System_Internal.ICloneable$instance {
|
|
848
|
+
readonly __tsonic_type_System_Net_Http_Headers_TransferCodingWithQualityHeaderValue: never;
|
|
849
|
+
|
|
830
850
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
831
851
|
|
|
832
852
|
Quality: Nullable_1<System_Internal.Double>;
|
|
@@ -844,12 +864,12 @@ export interface __TransferCodingWithQualityHeaderValue$views {
|
|
|
844
864
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
845
865
|
}
|
|
846
866
|
|
|
847
|
-
export interface TransferCodingWithQualityHeaderValue$instance extends System_Internal.ICloneable$instance {}
|
|
848
|
-
|
|
849
867
|
export type TransferCodingWithQualityHeaderValue = TransferCodingWithQualityHeaderValue$instance & __TransferCodingWithQualityHeaderValue$views;
|
|
850
868
|
|
|
851
869
|
|
|
852
|
-
export interface ViaHeaderValue$instance {
|
|
870
|
+
export interface ViaHeaderValue$instance extends System_Internal.ICloneable$instance {
|
|
871
|
+
readonly __tsonic_type_System_Net_Http_Headers_ViaHeaderValue: never;
|
|
872
|
+
|
|
853
873
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
854
874
|
|
|
855
875
|
readonly Comment: string | undefined;
|
|
@@ -875,12 +895,12 @@ export interface __ViaHeaderValue$views {
|
|
|
875
895
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
876
896
|
}
|
|
877
897
|
|
|
878
|
-
export interface ViaHeaderValue$instance extends System_Internal.ICloneable$instance {}
|
|
879
|
-
|
|
880
898
|
export type ViaHeaderValue = ViaHeaderValue$instance & __ViaHeaderValue$views;
|
|
881
899
|
|
|
882
900
|
|
|
883
|
-
export interface WarningHeaderValue$instance {
|
|
901
|
+
export interface WarningHeaderValue$instance extends System_Internal.ICloneable$instance {
|
|
902
|
+
readonly __tsonic_type_System_Net_Http_Headers_WarningHeaderValue: never;
|
|
903
|
+
|
|
884
904
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
885
905
|
|
|
886
906
|
readonly Agent: string;
|
|
@@ -905,8 +925,6 @@ export interface __WarningHeaderValue$views {
|
|
|
905
925
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
906
926
|
}
|
|
907
927
|
|
|
908
|
-
export interface WarningHeaderValue$instance extends System_Internal.ICloneable$instance {}
|
|
909
|
-
|
|
910
928
|
export type WarningHeaderValue = WarningHeaderValue$instance & __WarningHeaderValue$views;
|
|
911
929
|
|
|
912
930
|
|
|
@@ -24,6 +24,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
24
24
|
import type { Boolean as ClrBoolean, Byte, IDisposable, Int32, Int64, Object as ClrObject, String as ClrString, Type, Uri, Void } from "../../System/internal/index.js";
|
|
25
25
|
|
|
26
26
|
export interface JsonContent$instance extends HttpContent {
|
|
27
|
+
readonly __tsonic_type_System_Net_Http_Json_JsonContent: never;
|
|
28
|
+
|
|
27
29
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
28
30
|
|
|
29
31
|
readonly ObjectType: Type;
|
|
@@ -11,6 +11,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
11
11
|
import type { Action_1, Boolean as ClrBoolean, Exception, Int32, Object as ClrObject, String as ClrString, Type, Void } from "../../System/internal/index.js";
|
|
12
12
|
|
|
13
13
|
export interface HttpMetricsEnrichmentContext$instance {
|
|
14
|
+
readonly __tsonic_type_System_Net_Http_Metrics_HttpMetricsEnrichmentContext: never;
|
|
15
|
+
|
|
14
16
|
readonly Exception: Exception | undefined;
|
|
15
17
|
readonly Request: HttpRequestMessage;
|
|
16
18
|
readonly Response: HttpResponseMessage | undefined;
|