@tsonic/dotnet 10.0.4 → 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 +10 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +42 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +60 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +12 -0
- package/Microsoft.Win32/internal/index.d.ts +5 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +68 -0
- package/System/internal/index.d.ts +1438 -161
- package/System.Buffers/internal/index.d.ts +42 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +7 -0
- package/System.Collections/internal/index.d.ts +109 -27
- package/System.Collections.Concurrent/internal/index.d.ts +52 -3
- package/System.Collections.Frozen/internal/index.d.ts +37 -0
- package/System.Collections.Generic/internal/index.d.ts +422 -33
- package/System.Collections.Immutable/internal/index.d.ts +193 -2
- package/System.Collections.ObjectModel/internal/index.d.ts +98 -6
- package/System.Collections.Specialized/internal/index.d.ts +72 -10
- package/System.ComponentModel/internal/index.d.ts +392 -23
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +79 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +120 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +40 -0
- package/System.Data/internal/index.d.ts +273 -20
- package/System.Data.Common/internal/index.d.ts +146 -32
- package/System.Data.SqlTypes/internal/index.d.ts +147 -48
- package/System.Diagnostics/internal/index.d.ts +213 -13
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +28 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +37 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +30 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +56 -6
- package/System.Drawing/internal/index.d.ts +38 -0
- package/System.Dynamic/internal/index.d.ts +50 -5
- package/System.Formats.Asn1/internal/index.d.ts +19 -3
- package/System.Formats.Tar/internal/index.d.ts +26 -6
- package/System.Globalization/internal/index.d.ts +116 -20
- package/System.IO/internal/index.d.ts +141 -18
- package/System.IO.Compression/internal/index.d.ts +46 -9
- package/System.IO.Enumeration/internal/index.d.ts +13 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +18 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +13 -0
- package/System.IO.Pipelines/internal/index.d.ts +22 -2
- package/System.IO.Pipes/internal/index.d.ts +31 -0
- package/System.Linq/internal/index.d.ts +55 -7
- package/System.Linq.Expressions/internal/index.d.ts +103 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +202 -21
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +103 -0
- package/System.Net.Http.Headers/internal/index.d.ts +151 -60
- package/System.Net.Http.Json/internal/index.d.ts +4 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +88 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +89 -0
- package/System.Net.Quic/internal/index.d.ts +31 -6
- package/System.Net.Security/internal/index.d.ts +40 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +59 -6
- package/System.Net.WebSockets/internal/index.d.ts +32 -3
- package/System.Numerics/internal/index.d.ts +173 -7
- package/System.Reflection/internal/index.d.ts +202 -30
- package/System.Reflection.Emit/internal/index.d.ts +80 -9
- package/System.Reflection.Metadata/internal/index.d.ts +650 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +80 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +39 -3
- package/System.Resources/internal/index.d.ts +35 -1
- package/System.Runtime/internal/index.d.ts +18 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +330 -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 +268 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +82 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +59 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +82 -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 +56 -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 +9 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +111 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +5 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +8 -0
- package/System.Runtime.Versioning/internal/index.d.ts +28 -0
- package/System.Security/internal/index.d.ts +46 -6
- package/System.Security.AccessControl/internal/index.d.ts +116 -2
- package/System.Security.Authentication/internal/index.d.ts +8 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +16 -5
- package/System.Security.Claims/internal/index.d.ts +12 -6
- package/System.Security.Cryptography/internal/index.d.ts +568 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +114 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +7 -0
- package/System.Security.Principal/internal/index.d.ts +42 -5
- package/System.Text/internal/index.d.ts +108 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +53 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +21 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +64 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +27 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +75 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +186 -24
- package/System.Threading.Channels/internal/index.d.ts +20 -0
- package/System.Threading.Tasks/internal/index.d.ts +48 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +99 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +6 -0
- package/System.Timers/internal/index.d.ts +11 -3
- package/System.Transactions/internal/index.d.ts +76 -15
- package/System.Web/internal/index.d.ts +4 -0
- package/System.Windows.Input/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +245 -20
- package/System.Xml.Linq/internal/index.d.ts +73 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +171 -0
- package/System.Xml.Serialization/internal/index.d.ts +141 -0
- package/System.Xml.XPath/internal/index.d.ts +27 -8
- package/System.Xml.Xsl/internal/index.d.ts +27 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +112 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -338,6 +338,8 @@ export type WriteStreamClosedEventHandler = (sender: unknown, e: WriteStreamClos
|
|
|
338
338
|
|
|
339
339
|
|
|
340
340
|
export interface IAuthenticationModule$instance {
|
|
341
|
+
readonly __tsonic_iface_System_Net_IAuthenticationModule: never;
|
|
342
|
+
|
|
341
343
|
readonly CanPreAuthenticate: boolean;
|
|
342
344
|
readonly AuthenticationType: string;
|
|
343
345
|
Authenticate(challenge: string, request: WebRequest, credentials: ICredentials): Authorization | undefined;
|
|
@@ -348,6 +350,8 @@ export interface IAuthenticationModule$instance {
|
|
|
348
350
|
export type IAuthenticationModule = IAuthenticationModule$instance;
|
|
349
351
|
|
|
350
352
|
export interface ICredentialPolicy$instance {
|
|
353
|
+
readonly __tsonic_iface_System_Net_ICredentialPolicy: never;
|
|
354
|
+
|
|
351
355
|
ShouldSendCredential(challengeUri: Uri, request: WebRequest, credential: NetworkCredential, authenticationModule: IAuthenticationModule): boolean;
|
|
352
356
|
}
|
|
353
357
|
|
|
@@ -355,6 +359,8 @@ export interface ICredentialPolicy$instance {
|
|
|
355
359
|
export type ICredentialPolicy = ICredentialPolicy$instance;
|
|
356
360
|
|
|
357
361
|
export interface ICredentials$instance {
|
|
362
|
+
readonly __tsonic_iface_System_Net_ICredentials: never;
|
|
363
|
+
|
|
358
364
|
GetCredential(uri: Uri, authType: string): NetworkCredential;
|
|
359
365
|
}
|
|
360
366
|
|
|
@@ -362,6 +368,8 @@ export interface ICredentials$instance {
|
|
|
362
368
|
export type ICredentials = ICredentials$instance;
|
|
363
369
|
|
|
364
370
|
export interface ICredentialsByHost$instance {
|
|
371
|
+
readonly __tsonic_iface_System_Net_ICredentialsByHost: never;
|
|
372
|
+
|
|
365
373
|
GetCredential(host: string, port: int, authenticationType: string): NetworkCredential;
|
|
366
374
|
}
|
|
367
375
|
|
|
@@ -369,6 +377,8 @@ export interface ICredentialsByHost$instance {
|
|
|
369
377
|
export type ICredentialsByHost = ICredentialsByHost$instance;
|
|
370
378
|
|
|
371
379
|
export interface IWebProxy$instance {
|
|
380
|
+
readonly __tsonic_iface_System_Net_IWebProxy: never;
|
|
381
|
+
|
|
372
382
|
get Credentials(): ICredentials | undefined;
|
|
373
383
|
set Credentials(value: ICredentials | undefined);
|
|
374
384
|
GetProxy(destination: Uri): Uri | undefined;
|
|
@@ -379,6 +389,8 @@ export interface IWebProxy$instance {
|
|
|
379
389
|
export type IWebProxy = IWebProxy$instance;
|
|
380
390
|
|
|
381
391
|
export interface IWebProxyScript$instance {
|
|
392
|
+
readonly __tsonic_iface_System_Net_IWebProxyScript: never;
|
|
393
|
+
|
|
382
394
|
Close(): void;
|
|
383
395
|
Load(scriptLocation: Uri, script: string, helperType: Type): boolean;
|
|
384
396
|
Run(url: string, host: string): string;
|
|
@@ -388,6 +400,8 @@ export interface IWebProxyScript$instance {
|
|
|
388
400
|
export type IWebProxyScript = IWebProxyScript$instance;
|
|
389
401
|
|
|
390
402
|
export interface IWebRequestCreate$instance {
|
|
403
|
+
readonly __tsonic_iface_System_Net_IWebRequestCreate: never;
|
|
404
|
+
|
|
391
405
|
Create(uri: Uri): WebRequest;
|
|
392
406
|
}
|
|
393
407
|
|
|
@@ -395,6 +409,16 @@ export interface IWebRequestCreate$instance {
|
|
|
395
409
|
export type IWebRequestCreate = IWebRequestCreate$instance;
|
|
396
410
|
|
|
397
411
|
export interface IPNetwork$instance {
|
|
412
|
+
readonly __tsonic_type_System_Net_IPNetwork: never;
|
|
413
|
+
|
|
414
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
415
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
416
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
417
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
418
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
419
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
420
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
421
|
+
|
|
398
422
|
readonly BaseAddress: IPAddress;
|
|
399
423
|
readonly PrefixLength: int;
|
|
400
424
|
Contains(address: IPAddress): boolean;
|
|
@@ -432,12 +456,12 @@ export interface __IPNetwork$views {
|
|
|
432
456
|
TryFormat(utf8Destination: import("../../System/internal/index").Span_1<import("../../System/internal/index").Byte>, bytesWritten: int, format: import("../../System/internal/index").ReadOnlySpan_1<import("../../System/internal/index").Char>, provider: import("../../System/internal/index").IFormatProvider): boolean;
|
|
433
457
|
}
|
|
434
458
|
|
|
435
|
-
export interface IPNetwork$instance extends System_Internal.ISpanParsable_1$instance<IPNetwork> {}
|
|
436
|
-
|
|
437
459
|
export type IPNetwork = IPNetwork$instance & __IPNetwork$views;
|
|
438
460
|
|
|
439
461
|
|
|
440
462
|
export interface AuthenticationManager$instance {
|
|
463
|
+
readonly __tsonic_type_System_Net_AuthenticationManager: never;
|
|
464
|
+
|
|
441
465
|
}
|
|
442
466
|
|
|
443
467
|
|
|
@@ -457,6 +481,8 @@ export const AuthenticationManager: {
|
|
|
457
481
|
export type AuthenticationManager = AuthenticationManager$instance;
|
|
458
482
|
|
|
459
483
|
export interface Authorization$instance {
|
|
484
|
+
readonly __tsonic_type_System_Net_Authorization: never;
|
|
485
|
+
|
|
460
486
|
Complete: boolean;
|
|
461
487
|
readonly ConnectionGroupId: string | undefined;
|
|
462
488
|
readonly Message: string | undefined;
|
|
@@ -476,6 +502,8 @@ export const Authorization: {
|
|
|
476
502
|
export type Authorization = Authorization$instance;
|
|
477
503
|
|
|
478
504
|
export interface Cookie$instance {
|
|
505
|
+
readonly __tsonic_type_System_Net_Cookie: never;
|
|
506
|
+
|
|
479
507
|
Comment: string;
|
|
480
508
|
get CommentUri(): Uri | undefined;
|
|
481
509
|
set CommentUri(value: Uri | undefined);
|
|
@@ -508,6 +536,14 @@ export const Cookie: {
|
|
|
508
536
|
export type Cookie = Cookie$instance;
|
|
509
537
|
|
|
510
538
|
export interface CookieCollection$instance {
|
|
539
|
+
readonly __tsonic_type_System_Net_CookieCollection: never;
|
|
540
|
+
|
|
541
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
542
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
543
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
544
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
545
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
546
|
+
|
|
511
547
|
readonly Count: int;
|
|
512
548
|
readonly IsReadOnly: boolean;
|
|
513
549
|
readonly IsSynchronized: boolean;
|
|
@@ -542,6 +578,8 @@ export type CookieCollection = CookieCollection$instance & __CookieCollection$vi
|
|
|
542
578
|
|
|
543
579
|
|
|
544
580
|
export interface CookieContainer$instance {
|
|
581
|
+
readonly __tsonic_type_System_Net_CookieContainer: never;
|
|
582
|
+
|
|
545
583
|
Capacity: int;
|
|
546
584
|
readonly Count: int;
|
|
547
585
|
MaxCookieSize: int;
|
|
@@ -570,6 +608,10 @@ export const CookieContainer: {
|
|
|
570
608
|
export type CookieContainer = CookieContainer$instance;
|
|
571
609
|
|
|
572
610
|
export interface CookieException$instance extends FormatException {
|
|
611
|
+
readonly __tsonic_type_System_Net_CookieException: never;
|
|
612
|
+
|
|
613
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
614
|
+
|
|
573
615
|
GetObjectData(serializationInfo: SerializationInfo, streamingContext: StreamingContext): void;
|
|
574
616
|
}
|
|
575
617
|
|
|
@@ -589,6 +631,12 @@ export type CookieException = CookieException$instance & __CookieException$views
|
|
|
589
631
|
|
|
590
632
|
|
|
591
633
|
export interface CredentialCache$instance {
|
|
634
|
+
readonly __tsonic_type_System_Net_CredentialCache: never;
|
|
635
|
+
|
|
636
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
637
|
+
readonly __tsonic_iface_System_Net_ICredentials: never;
|
|
638
|
+
readonly __tsonic_iface_System_Net_ICredentialsByHost: never;
|
|
639
|
+
|
|
592
640
|
Add(uriPrefix: Uri, authType: string, cred: NetworkCredential): void;
|
|
593
641
|
Add(host: string, port: int, authenticationType: string, credential: NetworkCredential): void;
|
|
594
642
|
GetCredential(uriPrefix: Uri, authType: string): NetworkCredential;
|
|
@@ -612,12 +660,12 @@ export interface __CredentialCache$views {
|
|
|
612
660
|
As_IEnumerable(): System_Collections_Internal.IEnumerable$instance;
|
|
613
661
|
}
|
|
614
662
|
|
|
615
|
-
export interface CredentialCache$instance extends System_Collections_Internal.IEnumerable$instance {}
|
|
616
|
-
|
|
617
663
|
export type CredentialCache = CredentialCache$instance & __CredentialCache$views;
|
|
618
664
|
|
|
619
665
|
|
|
620
666
|
export interface DnsEndPoint$instance extends EndPoint {
|
|
667
|
+
readonly __tsonic_type_System_Net_DnsEndPoint: never;
|
|
668
|
+
|
|
621
669
|
readonly AddressFamily: AddressFamily;
|
|
622
670
|
readonly Host: string;
|
|
623
671
|
readonly Port: int;
|
|
@@ -636,6 +684,8 @@ export const DnsEndPoint: {
|
|
|
636
684
|
export type DnsEndPoint = DnsEndPoint$instance;
|
|
637
685
|
|
|
638
686
|
export interface DownloadDataCompletedEventArgs$instance extends AsyncCompletedEventArgs {
|
|
687
|
+
readonly __tsonic_type_System_Net_DownloadDataCompletedEventArgs: never;
|
|
688
|
+
|
|
639
689
|
readonly Result: byte[];
|
|
640
690
|
}
|
|
641
691
|
|
|
@@ -647,6 +697,8 @@ export const DownloadDataCompletedEventArgs: {
|
|
|
647
697
|
export type DownloadDataCompletedEventArgs = DownloadDataCompletedEventArgs$instance;
|
|
648
698
|
|
|
649
699
|
export interface DownloadProgressChangedEventArgs$instance extends ProgressChangedEventArgs {
|
|
700
|
+
readonly __tsonic_type_System_Net_DownloadProgressChangedEventArgs: never;
|
|
701
|
+
|
|
650
702
|
readonly BytesReceived: long;
|
|
651
703
|
readonly TotalBytesToReceive: long;
|
|
652
704
|
}
|
|
@@ -659,6 +711,8 @@ export const DownloadProgressChangedEventArgs: {
|
|
|
659
711
|
export type DownloadProgressChangedEventArgs = DownloadProgressChangedEventArgs$instance;
|
|
660
712
|
|
|
661
713
|
export interface DownloadStringCompletedEventArgs$instance extends AsyncCompletedEventArgs {
|
|
714
|
+
readonly __tsonic_type_System_Net_DownloadStringCompletedEventArgs: never;
|
|
715
|
+
|
|
662
716
|
readonly Result: string;
|
|
663
717
|
}
|
|
664
718
|
|
|
@@ -670,6 +724,8 @@ export const DownloadStringCompletedEventArgs: {
|
|
|
670
724
|
export type DownloadStringCompletedEventArgs = DownloadStringCompletedEventArgs$instance;
|
|
671
725
|
|
|
672
726
|
export interface EndPoint$instance {
|
|
727
|
+
readonly __tsonic_type_System_Net_EndPoint: never;
|
|
728
|
+
|
|
673
729
|
readonly AddressFamily: AddressFamily;
|
|
674
730
|
Create(socketAddress: SocketAddress): EndPoint;
|
|
675
731
|
Serialize(): SocketAddress;
|
|
@@ -683,6 +739,10 @@ export const EndPoint: (abstract new() => EndPoint) & {
|
|
|
683
739
|
export type EndPoint = EndPoint$instance;
|
|
684
740
|
|
|
685
741
|
export interface FileWebRequest$instance extends WebRequest$instance {
|
|
742
|
+
readonly __tsonic_type_System_Net_FileWebRequest: never;
|
|
743
|
+
|
|
744
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
745
|
+
|
|
686
746
|
get ConnectionGroupName(): string | undefined;
|
|
687
747
|
set ConnectionGroupName(value: string | undefined);
|
|
688
748
|
ContentLength: long;
|
|
@@ -725,6 +785,11 @@ export type FileWebRequest = FileWebRequest$instance & __FileWebRequest$views;
|
|
|
725
785
|
|
|
726
786
|
|
|
727
787
|
export interface FileWebResponse$instance extends WebResponse$instance {
|
|
788
|
+
readonly __tsonic_type_System_Net_FileWebResponse: never;
|
|
789
|
+
|
|
790
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
791
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
792
|
+
|
|
728
793
|
readonly ContentLength: long;
|
|
729
794
|
readonly ContentType: string;
|
|
730
795
|
readonly Headers: WebHeaderCollection;
|
|
@@ -751,6 +816,10 @@ export type FileWebResponse = FileWebResponse$instance & __FileWebResponse$views
|
|
|
751
816
|
|
|
752
817
|
|
|
753
818
|
export interface FtpWebRequest$instance extends WebRequest$instance {
|
|
819
|
+
readonly __tsonic_type_System_Net_FtpWebRequest: never;
|
|
820
|
+
|
|
821
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
822
|
+
|
|
754
823
|
get CachePolicy(): RequestCachePolicy | undefined;
|
|
755
824
|
set CachePolicy(value: RequestCachePolicy | undefined);
|
|
756
825
|
ClientCertificates: X509CertificateCollection;
|
|
@@ -803,6 +872,11 @@ export type FtpWebRequest = FtpWebRequest$instance & __FtpWebRequest$views;
|
|
|
803
872
|
|
|
804
873
|
|
|
805
874
|
export interface FtpWebResponse$instance extends WebResponse$instance {
|
|
875
|
+
readonly __tsonic_type_System_Net_FtpWebResponse: never;
|
|
876
|
+
|
|
877
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
878
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
879
|
+
|
|
806
880
|
readonly BannerMessage: string | undefined;
|
|
807
881
|
readonly ContentLength: long;
|
|
808
882
|
readonly ExitMessage: string | undefined;
|
|
@@ -834,6 +908,8 @@ export type FtpWebResponse = FtpWebResponse$instance & __FtpWebResponse$views;
|
|
|
834
908
|
|
|
835
909
|
|
|
836
910
|
export interface GlobalProxySelection$instance {
|
|
911
|
+
readonly __tsonic_type_System_Net_GlobalProxySelection: never;
|
|
912
|
+
|
|
837
913
|
}
|
|
838
914
|
|
|
839
915
|
|
|
@@ -846,7 +922,11 @@ export const GlobalProxySelection: {
|
|
|
846
922
|
|
|
847
923
|
export type GlobalProxySelection = GlobalProxySelection$instance;
|
|
848
924
|
|
|
849
|
-
export interface HttpListener$instance {
|
|
925
|
+
export interface HttpListener$instance extends System_Internal.IDisposable$instance {
|
|
926
|
+
readonly __tsonic_type_System_Net_HttpListener: never;
|
|
927
|
+
|
|
928
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
929
|
+
|
|
850
930
|
AuthenticationSchemes: AuthenticationSchemes;
|
|
851
931
|
get AuthenticationSchemeSelectorDelegate(): AuthenticationSchemeSelector | undefined;
|
|
852
932
|
set AuthenticationSchemeSelectorDelegate(value: AuthenticationSchemeSelector | undefined);
|
|
@@ -882,12 +962,14 @@ export interface __HttpListener$views {
|
|
|
882
962
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
883
963
|
}
|
|
884
964
|
|
|
885
|
-
export interface HttpListener$instance extends System_Internal.IDisposable$instance {}
|
|
886
|
-
|
|
887
965
|
export type HttpListener = HttpListener$instance & __HttpListener$views;
|
|
888
966
|
|
|
889
967
|
|
|
890
968
|
export interface HttpListenerBasicIdentity$instance extends GenericIdentity {
|
|
969
|
+
readonly __tsonic_type_System_Net_HttpListenerBasicIdentity: never;
|
|
970
|
+
|
|
971
|
+
readonly __tsonic_iface_System_Security_Principal_IIdentity: never;
|
|
972
|
+
|
|
891
973
|
readonly Password: string;
|
|
892
974
|
}
|
|
893
975
|
|
|
@@ -905,6 +987,8 @@ export type HttpListenerBasicIdentity = HttpListenerBasicIdentity$instance & __H
|
|
|
905
987
|
|
|
906
988
|
|
|
907
989
|
export interface HttpListenerContext$instance {
|
|
990
|
+
readonly __tsonic_type_System_Net_HttpListenerContext: never;
|
|
991
|
+
|
|
908
992
|
readonly Request: HttpListenerRequest;
|
|
909
993
|
readonly Response: HttpListenerResponse;
|
|
910
994
|
readonly User: IPrincipal | undefined;
|
|
@@ -922,6 +1006,10 @@ export const HttpListenerContext: {
|
|
|
922
1006
|
export type HttpListenerContext = HttpListenerContext$instance;
|
|
923
1007
|
|
|
924
1008
|
export interface HttpListenerException$instance extends Win32Exception {
|
|
1009
|
+
readonly __tsonic_type_System_Net_HttpListenerException: never;
|
|
1010
|
+
|
|
1011
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1012
|
+
|
|
925
1013
|
readonly ErrorCode: int;
|
|
926
1014
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
927
1015
|
}
|
|
@@ -942,6 +1030,12 @@ export type HttpListenerException = HttpListenerException$instance & __HttpListe
|
|
|
942
1030
|
|
|
943
1031
|
|
|
944
1032
|
export interface HttpListenerPrefixCollection$instance {
|
|
1033
|
+
readonly __tsonic_type_System_Net_HttpListenerPrefixCollection: never;
|
|
1034
|
+
|
|
1035
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1036
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1037
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1038
|
+
|
|
945
1039
|
readonly Count: int;
|
|
946
1040
|
readonly IsReadOnly: boolean;
|
|
947
1041
|
readonly IsSynchronized: boolean;
|
|
@@ -969,6 +1063,8 @@ export type HttpListenerPrefixCollection = HttpListenerPrefixCollection$instance
|
|
|
969
1063
|
|
|
970
1064
|
|
|
971
1065
|
export interface HttpListenerRequest$instance {
|
|
1066
|
+
readonly __tsonic_type_System_Net_HttpListenerRequest: never;
|
|
1067
|
+
|
|
972
1068
|
readonly AcceptTypes: string[] | undefined;
|
|
973
1069
|
readonly ClientCertificateError: int;
|
|
974
1070
|
readonly ContentEncoding: Encoding;
|
|
@@ -1011,7 +1107,11 @@ export const HttpListenerRequest: {
|
|
|
1011
1107
|
|
|
1012
1108
|
export type HttpListenerRequest = HttpListenerRequest$instance;
|
|
1013
1109
|
|
|
1014
|
-
export interface HttpListenerResponse$instance {
|
|
1110
|
+
export interface HttpListenerResponse$instance extends System_Internal.IDisposable$instance {
|
|
1111
|
+
readonly __tsonic_type_System_Net_HttpListenerResponse: never;
|
|
1112
|
+
|
|
1113
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1114
|
+
|
|
1015
1115
|
get ContentEncoding(): Encoding | undefined;
|
|
1016
1116
|
set ContentEncoding(value: Encoding | undefined);
|
|
1017
1117
|
ContentLength64: long;
|
|
@@ -1047,12 +1147,12 @@ export interface __HttpListenerResponse$views {
|
|
|
1047
1147
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
1048
1148
|
}
|
|
1049
1149
|
|
|
1050
|
-
export interface HttpListenerResponse$instance extends System_Internal.IDisposable$instance {}
|
|
1051
|
-
|
|
1052
1150
|
export type HttpListenerResponse = HttpListenerResponse$instance & __HttpListenerResponse$views;
|
|
1053
1151
|
|
|
1054
1152
|
|
|
1055
1153
|
export interface HttpListenerTimeoutManager$instance {
|
|
1154
|
+
readonly __tsonic_type_System_Net_HttpListenerTimeoutManager: never;
|
|
1155
|
+
|
|
1056
1156
|
DrainEntityBody: TimeSpan;
|
|
1057
1157
|
EntityBody: TimeSpan;
|
|
1058
1158
|
HeaderWait: TimeSpan;
|
|
@@ -1069,6 +1169,10 @@ export const HttpListenerTimeoutManager: {
|
|
|
1069
1169
|
export type HttpListenerTimeoutManager = HttpListenerTimeoutManager$instance;
|
|
1070
1170
|
|
|
1071
1171
|
export interface HttpWebRequest$instance extends WebRequest$instance {
|
|
1172
|
+
readonly __tsonic_type_System_Net_HttpWebRequest: never;
|
|
1173
|
+
|
|
1174
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1175
|
+
|
|
1072
1176
|
get Accept(): string | undefined;
|
|
1073
1177
|
set Accept(value: string | undefined);
|
|
1074
1178
|
readonly Address: Uri;
|
|
@@ -1160,6 +1264,11 @@ export type HttpWebRequest = HttpWebRequest$instance & __HttpWebRequest$views;
|
|
|
1160
1264
|
|
|
1161
1265
|
|
|
1162
1266
|
export interface HttpWebResponse$instance extends WebResponse$instance {
|
|
1267
|
+
readonly __tsonic_type_System_Net_HttpWebResponse: never;
|
|
1268
|
+
|
|
1269
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1270
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1271
|
+
|
|
1163
1272
|
readonly CharacterSet: string | undefined;
|
|
1164
1273
|
readonly ContentEncoding: string;
|
|
1165
1274
|
readonly ContentLength: long;
|
|
@@ -1198,6 +1307,15 @@ export type HttpWebResponse = HttpWebResponse$instance & __HttpWebResponse$views
|
|
|
1198
1307
|
|
|
1199
1308
|
|
|
1200
1309
|
export interface IPAddress$instance {
|
|
1310
|
+
readonly __tsonic_type_System_Net_IPAddress: never;
|
|
1311
|
+
|
|
1312
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
1313
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
1314
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
1315
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
1316
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
1317
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
1318
|
+
|
|
1201
1319
|
Address: long;
|
|
1202
1320
|
readonly AddressFamily: AddressFamily;
|
|
1203
1321
|
readonly IsIPv4MappedToIPv6: boolean;
|
|
@@ -1262,12 +1380,12 @@ export interface __IPAddress$views {
|
|
|
1262
1380
|
TryFormat(utf8Destination: import("../../System/internal/index").Span_1<import("../../System/internal/index").Byte>, bytesWritten: int, format: import("../../System/internal/index").ReadOnlySpan_1<import("../../System/internal/index").Char>, provider: import("../../System/internal/index").IFormatProvider): boolean;
|
|
1263
1381
|
}
|
|
1264
1382
|
|
|
1265
|
-
export interface IPAddress$instance extends System_Internal.ISpanParsable_1$instance<IPAddress> {}
|
|
1266
|
-
|
|
1267
1383
|
export type IPAddress = IPAddress$instance & __IPAddress$views;
|
|
1268
1384
|
|
|
1269
1385
|
|
|
1270
1386
|
export interface IPEndPoint$instance extends EndPoint {
|
|
1387
|
+
readonly __tsonic_type_System_Net_IPEndPoint: never;
|
|
1388
|
+
|
|
1271
1389
|
Address: IPAddress;
|
|
1272
1390
|
readonly AddressFamily: AddressFamily;
|
|
1273
1391
|
Port: int;
|
|
@@ -1294,6 +1412,8 @@ export const IPEndPoint: {
|
|
|
1294
1412
|
export type IPEndPoint = IPEndPoint$instance;
|
|
1295
1413
|
|
|
1296
1414
|
export interface IPHostEntry$instance {
|
|
1415
|
+
readonly __tsonic_type_System_Net_IPHostEntry: never;
|
|
1416
|
+
|
|
1297
1417
|
AddressList: IPAddress[];
|
|
1298
1418
|
Aliases: string[];
|
|
1299
1419
|
HostName: string;
|
|
@@ -1308,6 +1428,11 @@ export const IPHostEntry: {
|
|
|
1308
1428
|
export type IPHostEntry = IPHostEntry$instance;
|
|
1309
1429
|
|
|
1310
1430
|
export interface NetworkCredential$instance {
|
|
1431
|
+
readonly __tsonic_type_System_Net_NetworkCredential: never;
|
|
1432
|
+
|
|
1433
|
+
readonly __tsonic_iface_System_Net_ICredentials: never;
|
|
1434
|
+
readonly __tsonic_iface_System_Net_ICredentialsByHost: never;
|
|
1435
|
+
|
|
1311
1436
|
Domain: string;
|
|
1312
1437
|
Password: string;
|
|
1313
1438
|
SecurePassword: SecureString;
|
|
@@ -1335,6 +1460,8 @@ export type NetworkCredential = NetworkCredential$instance & __NetworkCredential
|
|
|
1335
1460
|
|
|
1336
1461
|
|
|
1337
1462
|
export interface OpenReadCompletedEventArgs$instance extends AsyncCompletedEventArgs {
|
|
1463
|
+
readonly __tsonic_type_System_Net_OpenReadCompletedEventArgs: never;
|
|
1464
|
+
|
|
1338
1465
|
readonly Result: Stream;
|
|
1339
1466
|
}
|
|
1340
1467
|
|
|
@@ -1346,6 +1473,8 @@ export const OpenReadCompletedEventArgs: {
|
|
|
1346
1473
|
export type OpenReadCompletedEventArgs = OpenReadCompletedEventArgs$instance;
|
|
1347
1474
|
|
|
1348
1475
|
export interface OpenWriteCompletedEventArgs$instance extends AsyncCompletedEventArgs {
|
|
1476
|
+
readonly __tsonic_type_System_Net_OpenWriteCompletedEventArgs: never;
|
|
1477
|
+
|
|
1349
1478
|
readonly Result: Stream;
|
|
1350
1479
|
}
|
|
1351
1480
|
|
|
@@ -1357,6 +1486,8 @@ export const OpenWriteCompletedEventArgs: {
|
|
|
1357
1486
|
export type OpenWriteCompletedEventArgs = OpenWriteCompletedEventArgs$instance;
|
|
1358
1487
|
|
|
1359
1488
|
export interface PathList$instance {
|
|
1489
|
+
readonly __tsonic_type_System_Net_PathList: never;
|
|
1490
|
+
|
|
1360
1491
|
}
|
|
1361
1492
|
|
|
1362
1493
|
|
|
@@ -1368,6 +1499,10 @@ export const PathList: {
|
|
|
1368
1499
|
export type PathList = PathList$instance;
|
|
1369
1500
|
|
|
1370
1501
|
export interface ProtocolViolationException$instance extends InvalidOperationException {
|
|
1502
|
+
readonly __tsonic_type_System_Net_ProtocolViolationException: never;
|
|
1503
|
+
|
|
1504
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1505
|
+
|
|
1371
1506
|
GetObjectData(serializationInfo: SerializationInfo, streamingContext: StreamingContext): void;
|
|
1372
1507
|
}
|
|
1373
1508
|
|
|
@@ -1386,6 +1521,8 @@ export type ProtocolViolationException = ProtocolViolationException$instance & _
|
|
|
1386
1521
|
|
|
1387
1522
|
|
|
1388
1523
|
export interface ServicePoint$instance {
|
|
1524
|
+
readonly __tsonic_type_System_Net_ServicePoint: never;
|
|
1525
|
+
|
|
1389
1526
|
readonly Address: Uri;
|
|
1390
1527
|
get BindIPEndPointDelegate(): BindIPEndPoint | undefined;
|
|
1391
1528
|
set BindIPEndPointDelegate(value: BindIPEndPoint | undefined);
|
|
@@ -1415,6 +1552,8 @@ export const ServicePoint: {
|
|
|
1415
1552
|
export type ServicePoint = ServicePoint$instance;
|
|
1416
1553
|
|
|
1417
1554
|
export interface ServicePointManager$instance {
|
|
1555
|
+
readonly __tsonic_type_System_Net_ServicePointManager: never;
|
|
1556
|
+
|
|
1418
1557
|
}
|
|
1419
1558
|
|
|
1420
1559
|
|
|
@@ -1444,6 +1583,10 @@ export const ServicePointManager: {
|
|
|
1444
1583
|
export type ServicePointManager = ServicePointManager$instance;
|
|
1445
1584
|
|
|
1446
1585
|
export interface SocketAddress$instance {
|
|
1586
|
+
readonly __tsonic_type_System_Net_SocketAddress: never;
|
|
1587
|
+
|
|
1588
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1589
|
+
|
|
1447
1590
|
readonly Buffer: Memory_1<System_Internal.Byte>;
|
|
1448
1591
|
readonly Family: AddressFamily;
|
|
1449
1592
|
[offset: number]: byte;
|
|
@@ -1473,6 +1616,8 @@ export type SocketAddress = SocketAddress$instance & __SocketAddress$views;
|
|
|
1473
1616
|
|
|
1474
1617
|
|
|
1475
1618
|
export interface TransportContext$instance {
|
|
1619
|
+
readonly __tsonic_type_System_Net_TransportContext: never;
|
|
1620
|
+
|
|
1476
1621
|
GetChannelBinding(kind: ChannelBindingKind): ChannelBinding | undefined;
|
|
1477
1622
|
}
|
|
1478
1623
|
|
|
@@ -1484,6 +1629,8 @@ export const TransportContext: (abstract new() => TransportContext) & {
|
|
|
1484
1629
|
export type TransportContext = TransportContext$instance;
|
|
1485
1630
|
|
|
1486
1631
|
export interface UploadDataCompletedEventArgs$instance extends AsyncCompletedEventArgs {
|
|
1632
|
+
readonly __tsonic_type_System_Net_UploadDataCompletedEventArgs: never;
|
|
1633
|
+
|
|
1487
1634
|
readonly Result: byte[];
|
|
1488
1635
|
}
|
|
1489
1636
|
|
|
@@ -1495,6 +1642,8 @@ export const UploadDataCompletedEventArgs: {
|
|
|
1495
1642
|
export type UploadDataCompletedEventArgs = UploadDataCompletedEventArgs$instance;
|
|
1496
1643
|
|
|
1497
1644
|
export interface UploadFileCompletedEventArgs$instance extends AsyncCompletedEventArgs {
|
|
1645
|
+
readonly __tsonic_type_System_Net_UploadFileCompletedEventArgs: never;
|
|
1646
|
+
|
|
1498
1647
|
readonly Result: byte[];
|
|
1499
1648
|
}
|
|
1500
1649
|
|
|
@@ -1506,6 +1655,8 @@ export const UploadFileCompletedEventArgs: {
|
|
|
1506
1655
|
export type UploadFileCompletedEventArgs = UploadFileCompletedEventArgs$instance;
|
|
1507
1656
|
|
|
1508
1657
|
export interface UploadProgressChangedEventArgs$instance extends ProgressChangedEventArgs {
|
|
1658
|
+
readonly __tsonic_type_System_Net_UploadProgressChangedEventArgs: never;
|
|
1659
|
+
|
|
1509
1660
|
readonly BytesReceived: long;
|
|
1510
1661
|
readonly BytesSent: long;
|
|
1511
1662
|
readonly TotalBytesToReceive: long;
|
|
@@ -1520,6 +1671,8 @@ export const UploadProgressChangedEventArgs: {
|
|
|
1520
1671
|
export type UploadProgressChangedEventArgs = UploadProgressChangedEventArgs$instance;
|
|
1521
1672
|
|
|
1522
1673
|
export interface UploadStringCompletedEventArgs$instance extends AsyncCompletedEventArgs {
|
|
1674
|
+
readonly __tsonic_type_System_Net_UploadStringCompletedEventArgs: never;
|
|
1675
|
+
|
|
1523
1676
|
readonly Result: string;
|
|
1524
1677
|
}
|
|
1525
1678
|
|
|
@@ -1531,6 +1684,8 @@ export const UploadStringCompletedEventArgs: {
|
|
|
1531
1684
|
export type UploadStringCompletedEventArgs = UploadStringCompletedEventArgs$instance;
|
|
1532
1685
|
|
|
1533
1686
|
export interface UploadValuesCompletedEventArgs$instance extends AsyncCompletedEventArgs {
|
|
1687
|
+
readonly __tsonic_type_System_Net_UploadValuesCompletedEventArgs: never;
|
|
1688
|
+
|
|
1534
1689
|
readonly Result: byte[];
|
|
1535
1690
|
}
|
|
1536
1691
|
|
|
@@ -1542,6 +1697,11 @@ export const UploadValuesCompletedEventArgs: {
|
|
|
1542
1697
|
export type UploadValuesCompletedEventArgs = UploadValuesCompletedEventArgs$instance;
|
|
1543
1698
|
|
|
1544
1699
|
export interface WebClient$instance extends Component {
|
|
1700
|
+
readonly __tsonic_type_System_Net_WebClient: never;
|
|
1701
|
+
|
|
1702
|
+
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
1703
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1704
|
+
|
|
1545
1705
|
AllowReadStreamBuffering: boolean;
|
|
1546
1706
|
AllowWriteStreamBuffering: boolean;
|
|
1547
1707
|
BaseAddress: string;
|
|
@@ -1671,6 +1831,10 @@ export type WebClient = WebClient$instance & __WebClient$views;
|
|
|
1671
1831
|
|
|
1672
1832
|
|
|
1673
1833
|
export interface WebException$instance extends InvalidOperationException {
|
|
1834
|
+
readonly __tsonic_type_System_Net_WebException: never;
|
|
1835
|
+
|
|
1836
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1837
|
+
|
|
1674
1838
|
readonly Response: WebResponse | undefined;
|
|
1675
1839
|
readonly Status: WebExceptionStatus;
|
|
1676
1840
|
GetObjectData(serializationInfo: SerializationInfo, streamingContext: StreamingContext): void;
|
|
@@ -1694,6 +1858,13 @@ export type WebException = WebException$instance & __WebException$views;
|
|
|
1694
1858
|
|
|
1695
1859
|
|
|
1696
1860
|
export interface WebHeaderCollection$instance extends NameValueCollection {
|
|
1861
|
+
readonly __tsonic_type_System_Net_WebHeaderCollection: never;
|
|
1862
|
+
|
|
1863
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1864
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1865
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
1866
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1867
|
+
|
|
1697
1868
|
readonly AllKeys: (string | undefined)[] | string[];
|
|
1698
1869
|
readonly Count: int;
|
|
1699
1870
|
readonly Keys: NameObjectCollectionBase_KeysCollection;
|
|
@@ -1736,7 +1907,12 @@ export interface __WebHeaderCollection$views {
|
|
|
1736
1907
|
export type WebHeaderCollection = WebHeaderCollection$instance & __WebHeaderCollection$views;
|
|
1737
1908
|
|
|
1738
1909
|
|
|
1739
|
-
export interface WebProxy$instance {
|
|
1910
|
+
export interface WebProxy$instance extends IWebProxy$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
1911
|
+
readonly __tsonic_type_System_Net_WebProxy: never;
|
|
1912
|
+
|
|
1913
|
+
readonly __tsonic_iface_System_Net_IWebProxy: never;
|
|
1914
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1915
|
+
|
|
1740
1916
|
get Address(): Uri | undefined;
|
|
1741
1917
|
set Address(value: Uri | undefined);
|
|
1742
1918
|
readonly BypassArrayList: ArrayList;
|
|
@@ -1771,12 +1947,14 @@ export interface __WebProxy$views {
|
|
|
1771
1947
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
1772
1948
|
}
|
|
1773
1949
|
|
|
1774
|
-
export interface WebProxy$instance extends IWebProxy$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1775
|
-
|
|
1776
1950
|
export type WebProxy = WebProxy$instance & __WebProxy$views;
|
|
1777
1951
|
|
|
1778
1952
|
|
|
1779
|
-
export interface WebRequest$instance extends MarshalByRefObject {
|
|
1953
|
+
export interface WebRequest$instance extends MarshalByRefObject, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
1954
|
+
readonly __tsonic_type_System_Net_WebRequest: never;
|
|
1955
|
+
|
|
1956
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1957
|
+
|
|
1780
1958
|
AuthenticationLevel: AuthenticationLevel;
|
|
1781
1959
|
get CachePolicy(): RequestCachePolicy | undefined;
|
|
1782
1960
|
set CachePolicy(value: RequestCachePolicy | undefined);
|
|
@@ -1828,12 +2006,15 @@ export interface __WebRequest$views {
|
|
|
1828
2006
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
1829
2007
|
}
|
|
1830
2008
|
|
|
1831
|
-
export interface WebRequest$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1832
|
-
|
|
1833
2009
|
export type WebRequest = WebRequest$instance & __WebRequest$views;
|
|
1834
2010
|
|
|
1835
2011
|
|
|
1836
|
-
export interface WebResponse$instance extends MarshalByRefObject {
|
|
2012
|
+
export interface WebResponse$instance extends MarshalByRefObject, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
2013
|
+
readonly __tsonic_type_System_Net_WebResponse: never;
|
|
2014
|
+
|
|
2015
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
2016
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2017
|
+
|
|
1837
2018
|
ContentLength: long;
|
|
1838
2019
|
ContentType: string;
|
|
1839
2020
|
readonly Headers: WebHeaderCollection;
|
|
@@ -1858,12 +2039,12 @@ export interface __WebResponse$views {
|
|
|
1858
2039
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
1859
2040
|
}
|
|
1860
2041
|
|
|
1861
|
-
export interface WebResponse$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1862
|
-
|
|
1863
2042
|
export type WebResponse = WebResponse$instance & __WebResponse$views;
|
|
1864
2043
|
|
|
1865
2044
|
|
|
1866
2045
|
export interface WriteStreamClosedEventArgs$instance extends EventArgs {
|
|
2046
|
+
readonly __tsonic_type_System_Net_WriteStreamClosedEventArgs: never;
|
|
2047
|
+
|
|
1867
2048
|
readonly Error: Exception | undefined;
|
|
1868
2049
|
}
|
|
1869
2050
|
|
|
@@ -44,6 +44,8 @@ export enum RequestCacheLevel {
|
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
export interface HttpRequestCachePolicy$instance extends RequestCachePolicy {
|
|
47
|
+
readonly __tsonic_type_System_Net_Cache_HttpRequestCachePolicy: never;
|
|
48
|
+
|
|
47
49
|
readonly CacheSyncDate: DateTime;
|
|
48
50
|
readonly Level: HttpRequestCacheLevel | RequestCacheLevel;
|
|
49
51
|
readonly MaxAge: TimeSpan;
|
|
@@ -66,6 +68,8 @@ export const HttpRequestCachePolicy: {
|
|
|
66
68
|
export type HttpRequestCachePolicy = HttpRequestCachePolicy$instance;
|
|
67
69
|
|
|
68
70
|
export interface RequestCachePolicy$instance {
|
|
71
|
+
readonly __tsonic_type_System_Net_Cache_RequestCachePolicy: never;
|
|
72
|
+
|
|
69
73
|
readonly Level: HttpRequestCacheLevel | RequestCacheLevel;
|
|
70
74
|
ToString(): string;
|
|
71
75
|
}
|