@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
|
@@ -430,6 +430,10 @@ export type ServerOptionsSelectionCallback = (stream: SslStream, clientHelloInfo
|
|
|
430
430
|
|
|
431
431
|
|
|
432
432
|
export interface SslApplicationProtocol$instance {
|
|
433
|
+
readonly __tsonic_type_System_Net_Security_SslApplicationProtocol: never;
|
|
434
|
+
|
|
435
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
436
|
+
|
|
433
437
|
readonly Protocol: ReadOnlyMemory_1<System_Internal.Byte>;
|
|
434
438
|
Equals(other: SslApplicationProtocol): boolean;
|
|
435
439
|
Equals(obj: unknown): boolean;
|
|
@@ -458,6 +462,8 @@ export type SslApplicationProtocol = SslApplicationProtocol$instance & __SslAppl
|
|
|
458
462
|
|
|
459
463
|
|
|
460
464
|
export interface SslClientHelloInfo$instance {
|
|
465
|
+
readonly __tsonic_type_System_Net_Security_SslClientHelloInfo: never;
|
|
466
|
+
|
|
461
467
|
readonly ServerName: string;
|
|
462
468
|
readonly SslProtocols: SslProtocols;
|
|
463
469
|
}
|
|
@@ -471,6 +477,11 @@ export const SslClientHelloInfo: {
|
|
|
471
477
|
export type SslClientHelloInfo = SslClientHelloInfo$instance;
|
|
472
478
|
|
|
473
479
|
export interface AuthenticatedStream$instance extends Stream {
|
|
480
|
+
readonly __tsonic_type_System_Net_Security_AuthenticatedStream: never;
|
|
481
|
+
|
|
482
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
483
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
484
|
+
|
|
474
485
|
readonly IsAuthenticated: boolean;
|
|
475
486
|
readonly IsEncrypted: boolean;
|
|
476
487
|
readonly IsMutuallyAuthenticated: boolean;
|
|
@@ -496,6 +507,8 @@ export type AuthenticatedStream = AuthenticatedStream$instance & __Authenticated
|
|
|
496
507
|
|
|
497
508
|
|
|
498
509
|
export interface CipherSuitesPolicy$instance {
|
|
510
|
+
readonly __tsonic_type_System_Net_Security_CipherSuitesPolicy: never;
|
|
511
|
+
|
|
499
512
|
readonly AllowedCipherSuites: IEnumerable_1<TlsCipherSuite>;
|
|
500
513
|
}
|
|
501
514
|
|
|
@@ -507,7 +520,11 @@ export const CipherSuitesPolicy: {
|
|
|
507
520
|
|
|
508
521
|
export type CipherSuitesPolicy = CipherSuitesPolicy$instance;
|
|
509
522
|
|
|
510
|
-
export interface NegotiateAuthentication$instance {
|
|
523
|
+
export interface NegotiateAuthentication$instance extends System_Internal.IDisposable$instance {
|
|
524
|
+
readonly __tsonic_type_System_Net_Security_NegotiateAuthentication: never;
|
|
525
|
+
|
|
526
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
527
|
+
|
|
511
528
|
readonly ImpersonationLevel: TokenImpersonationLevel;
|
|
512
529
|
readonly IsAuthenticated: boolean;
|
|
513
530
|
readonly IsEncrypted: boolean;
|
|
@@ -539,12 +556,12 @@ export interface __NegotiateAuthentication$views {
|
|
|
539
556
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
540
557
|
}
|
|
541
558
|
|
|
542
|
-
export interface NegotiateAuthentication$instance extends System_Internal.IDisposable$instance {}
|
|
543
|
-
|
|
544
559
|
export type NegotiateAuthentication = NegotiateAuthentication$instance & __NegotiateAuthentication$views;
|
|
545
560
|
|
|
546
561
|
|
|
547
562
|
export interface NegotiateAuthenticationClientOptions$instance {
|
|
563
|
+
readonly __tsonic_type_System_Net_Security_NegotiateAuthenticationClientOptions: never;
|
|
564
|
+
|
|
548
565
|
AllowedImpersonationLevel: TokenImpersonationLevel;
|
|
549
566
|
get Binding(): ChannelBinding | undefined;
|
|
550
567
|
set Binding(value: ChannelBinding | undefined);
|
|
@@ -565,6 +582,8 @@ export const NegotiateAuthenticationClientOptions: {
|
|
|
565
582
|
export type NegotiateAuthenticationClientOptions = NegotiateAuthenticationClientOptions$instance;
|
|
566
583
|
|
|
567
584
|
export interface NegotiateAuthenticationServerOptions$instance {
|
|
585
|
+
readonly __tsonic_type_System_Net_Security_NegotiateAuthenticationServerOptions: never;
|
|
586
|
+
|
|
568
587
|
get Binding(): ChannelBinding | undefined;
|
|
569
588
|
set Binding(value: ChannelBinding | undefined);
|
|
570
589
|
Credential: NetworkCredential;
|
|
@@ -584,6 +603,11 @@ export const NegotiateAuthenticationServerOptions: {
|
|
|
584
603
|
export type NegotiateAuthenticationServerOptions = NegotiateAuthenticationServerOptions$instance;
|
|
585
604
|
|
|
586
605
|
export interface NegotiateStream$instance extends AuthenticatedStream$instance {
|
|
606
|
+
readonly __tsonic_type_System_Net_Security_NegotiateStream: never;
|
|
607
|
+
|
|
608
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
609
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
610
|
+
|
|
587
611
|
readonly CanRead: boolean;
|
|
588
612
|
readonly CanSeek: boolean;
|
|
589
613
|
readonly CanTimeout: boolean;
|
|
@@ -671,6 +695,8 @@ export type NegotiateStream = NegotiateStream$instance & __NegotiateStream$views
|
|
|
671
695
|
|
|
672
696
|
|
|
673
697
|
export interface SslCertificateTrust$instance {
|
|
698
|
+
readonly __tsonic_type_System_Net_Security_SslCertificateTrust: never;
|
|
699
|
+
|
|
674
700
|
}
|
|
675
701
|
|
|
676
702
|
|
|
@@ -683,6 +709,8 @@ export const SslCertificateTrust: {
|
|
|
683
709
|
export type SslCertificateTrust = SslCertificateTrust$instance;
|
|
684
710
|
|
|
685
711
|
export interface SslClientAuthenticationOptions$instance {
|
|
712
|
+
readonly __tsonic_type_System_Net_Security_SslClientAuthenticationOptions: never;
|
|
713
|
+
|
|
686
714
|
AllowRenegotiation: boolean;
|
|
687
715
|
AllowRsaPkcs1Padding: boolean;
|
|
688
716
|
AllowRsaPssPadding: boolean;
|
|
@@ -717,6 +745,8 @@ export const SslClientAuthenticationOptions: {
|
|
|
717
745
|
export type SslClientAuthenticationOptions = SslClientAuthenticationOptions$instance;
|
|
718
746
|
|
|
719
747
|
export interface SslServerAuthenticationOptions$instance {
|
|
748
|
+
readonly __tsonic_type_System_Net_Security_SslServerAuthenticationOptions: never;
|
|
749
|
+
|
|
720
750
|
AllowRenegotiation: boolean;
|
|
721
751
|
AllowRsaPkcs1Padding: boolean;
|
|
722
752
|
AllowRsaPssPadding: boolean;
|
|
@@ -750,6 +780,11 @@ export const SslServerAuthenticationOptions: {
|
|
|
750
780
|
export type SslServerAuthenticationOptions = SslServerAuthenticationOptions$instance;
|
|
751
781
|
|
|
752
782
|
export interface SslStream$instance extends AuthenticatedStream$instance {
|
|
783
|
+
readonly __tsonic_type_System_Net_Security_SslStream: never;
|
|
784
|
+
|
|
785
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
786
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
787
|
+
|
|
753
788
|
readonly CanRead: boolean;
|
|
754
789
|
readonly CanSeek: boolean;
|
|
755
790
|
readonly CanTimeout: boolean;
|
|
@@ -856,6 +891,8 @@ export type SslStream = SslStream$instance & __SslStream$views;
|
|
|
856
891
|
|
|
857
892
|
|
|
858
893
|
export interface SslStreamCertificateContext$instance {
|
|
894
|
+
readonly __tsonic_type_System_Net_Security_SslStreamCertificateContext: never;
|
|
895
|
+
|
|
859
896
|
readonly IntermediateCertificates: ReadOnlyCollection_1<X509Certificate2>;
|
|
860
897
|
readonly TargetCertificate: X509Certificate2;
|
|
861
898
|
}
|
|
@@ -21,6 +21,8 @@ export type SseItemParser_1<T> = (eventType: string, data: ReadOnlySpan_1<System
|
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
export interface SseItem_1$instance<T> {
|
|
24
|
+
readonly __tsonic_type_System_Net_ServerSentEvents_SseItem_1: never;
|
|
25
|
+
|
|
24
26
|
readonly Data: T;
|
|
25
27
|
get EventId(): string | undefined;
|
|
26
28
|
set EventId(value: string | undefined);
|
|
@@ -37,6 +39,8 @@ export const SseItem_1: {
|
|
|
37
39
|
export type SseItem_1<T> = SseItem_1$instance<T>;
|
|
38
40
|
|
|
39
41
|
export interface SseParser_1$instance<T> {
|
|
42
|
+
readonly __tsonic_type_System_Net_ServerSentEvents_SseParser_1: never;
|
|
43
|
+
|
|
40
44
|
LastEventId: string;
|
|
41
45
|
ReconnectionInterval: TimeSpan;
|
|
42
46
|
Enumerate(): IEnumerable_1<SseItem_1<T>>;
|
|
@@ -360,6 +360,10 @@ export enum TransmitFileOptions {
|
|
|
360
360
|
|
|
361
361
|
|
|
362
362
|
export interface IPPacketInformation$instance {
|
|
363
|
+
readonly __tsonic_type_System_Net_Sockets_IPPacketInformation: never;
|
|
364
|
+
|
|
365
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
366
|
+
|
|
363
367
|
readonly Address: IPAddress;
|
|
364
368
|
readonly Interface: int;
|
|
365
369
|
Equals(comparand: unknown): boolean;
|
|
@@ -384,6 +388,8 @@ export type IPPacketInformation = IPPacketInformation$instance & __IPPacketInfor
|
|
|
384
388
|
|
|
385
389
|
|
|
386
390
|
export interface SocketInformation$instance {
|
|
391
|
+
readonly __tsonic_type_System_Net_Sockets_SocketInformation: never;
|
|
392
|
+
|
|
387
393
|
Options: SocketInformationOptions;
|
|
388
394
|
ProtocolInformation: byte[];
|
|
389
395
|
}
|
|
@@ -397,6 +403,8 @@ export const SocketInformation: {
|
|
|
397
403
|
export type SocketInformation = SocketInformation$instance;
|
|
398
404
|
|
|
399
405
|
export interface SocketReceiveFromResult$instance {
|
|
406
|
+
readonly __tsonic_type_System_Net_Sockets_SocketReceiveFromResult: never;
|
|
407
|
+
|
|
400
408
|
ReceivedBytes: int;
|
|
401
409
|
RemoteEndPoint: EndPoint;
|
|
402
410
|
}
|
|
@@ -410,6 +418,8 @@ export const SocketReceiveFromResult: {
|
|
|
410
418
|
export type SocketReceiveFromResult = SocketReceiveFromResult$instance;
|
|
411
419
|
|
|
412
420
|
export interface SocketReceiveMessageFromResult$instance {
|
|
421
|
+
readonly __tsonic_type_System_Net_Sockets_SocketReceiveMessageFromResult: never;
|
|
422
|
+
|
|
413
423
|
ReceivedBytes: int;
|
|
414
424
|
SocketFlags: SocketFlags;
|
|
415
425
|
RemoteEndPoint: EndPoint;
|
|
@@ -425,6 +435,10 @@ export const SocketReceiveMessageFromResult: {
|
|
|
425
435
|
export type SocketReceiveMessageFromResult = SocketReceiveMessageFromResult$instance;
|
|
426
436
|
|
|
427
437
|
export interface UdpReceiveResult$instance {
|
|
438
|
+
readonly __tsonic_type_System_Net_Sockets_UdpReceiveResult: never;
|
|
439
|
+
|
|
440
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
441
|
+
|
|
428
442
|
readonly Buffer: byte[];
|
|
429
443
|
readonly RemoteEndPoint: IPEndPoint;
|
|
430
444
|
Equals(obj: unknown): boolean;
|
|
@@ -449,6 +463,8 @@ export type UdpReceiveResult = UdpReceiveResult$instance & __UdpReceiveResult$vi
|
|
|
449
463
|
|
|
450
464
|
|
|
451
465
|
export interface IPv6MulticastOption$instance {
|
|
466
|
+
readonly __tsonic_type_System_Net_Sockets_IPv6MulticastOption: never;
|
|
467
|
+
|
|
452
468
|
Group: IPAddress;
|
|
453
469
|
InterfaceIndex: long;
|
|
454
470
|
}
|
|
@@ -463,6 +479,8 @@ export const IPv6MulticastOption: {
|
|
|
463
479
|
export type IPv6MulticastOption = IPv6MulticastOption$instance;
|
|
464
480
|
|
|
465
481
|
export interface LingerOption$instance {
|
|
482
|
+
readonly __tsonic_type_System_Net_Sockets_LingerOption: never;
|
|
483
|
+
|
|
466
484
|
Enabled: boolean;
|
|
467
485
|
LingerTime: int;
|
|
468
486
|
Equals(comparand: unknown): boolean;
|
|
@@ -478,6 +496,8 @@ export const LingerOption: {
|
|
|
478
496
|
export type LingerOption = LingerOption$instance;
|
|
479
497
|
|
|
480
498
|
export interface MulticastOption$instance {
|
|
499
|
+
readonly __tsonic_type_System_Net_Sockets_MulticastOption: never;
|
|
500
|
+
|
|
481
501
|
Group: IPAddress;
|
|
482
502
|
InterfaceIndex: int;
|
|
483
503
|
get LocalAddress(): IPAddress | undefined;
|
|
@@ -495,6 +515,11 @@ export const MulticastOption: {
|
|
|
495
515
|
export type MulticastOption = MulticastOption$instance;
|
|
496
516
|
|
|
497
517
|
export interface NetworkStream$instance extends Stream {
|
|
518
|
+
readonly __tsonic_type_System_Net_Sockets_NetworkStream: never;
|
|
519
|
+
|
|
520
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
521
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
522
|
+
|
|
498
523
|
readonly CanRead: boolean;
|
|
499
524
|
readonly CanSeek: boolean;
|
|
500
525
|
readonly CanTimeout: boolean;
|
|
@@ -557,6 +582,10 @@ export type NetworkStream = NetworkStream$instance & __NetworkStream$views;
|
|
|
557
582
|
|
|
558
583
|
|
|
559
584
|
export interface SafeSocketHandle$instance extends SafeHandleMinusOneIsInvalid {
|
|
585
|
+
readonly __tsonic_type_System_Net_Sockets_SafeSocketHandle: never;
|
|
586
|
+
|
|
587
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
588
|
+
|
|
560
589
|
readonly IsInvalid: boolean;
|
|
561
590
|
Dispose(): void;
|
|
562
591
|
Dispose(disposing: boolean): void;
|
|
@@ -578,6 +607,8 @@ export type SafeSocketHandle = SafeSocketHandle$instance & __SafeSocketHandle$vi
|
|
|
578
607
|
|
|
579
608
|
|
|
580
609
|
export interface SendPacketsElement$instance {
|
|
610
|
+
readonly __tsonic_type_System_Net_Sockets_SendPacketsElement: never;
|
|
611
|
+
|
|
581
612
|
get Buffer(): byte[] | undefined;
|
|
582
613
|
set Buffer(value: byte[] | undefined);
|
|
583
614
|
Count: int;
|
|
@@ -612,6 +643,10 @@ export const SendPacketsElement: {
|
|
|
612
643
|
export type SendPacketsElement = SendPacketsElement$instance;
|
|
613
644
|
|
|
614
645
|
export interface Socket$instance {
|
|
646
|
+
readonly __tsonic_type_System_Net_Sockets_Socket: never;
|
|
647
|
+
|
|
648
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
649
|
+
|
|
615
650
|
readonly AddressFamily: AddressFamily;
|
|
616
651
|
readonly Available: int;
|
|
617
652
|
Blocking: boolean;
|
|
@@ -819,7 +854,11 @@ export interface __Socket$views {
|
|
|
819
854
|
export type Socket = Socket$instance & __Socket$views;
|
|
820
855
|
|
|
821
856
|
|
|
822
|
-
export interface SocketAsyncEventArgs$instance extends EventArgs {
|
|
857
|
+
export interface SocketAsyncEventArgs$instance extends EventArgs, System_Internal.IDisposable$instance {
|
|
858
|
+
readonly __tsonic_type_System_Net_Sockets_SocketAsyncEventArgs: never;
|
|
859
|
+
|
|
860
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
861
|
+
|
|
823
862
|
get AcceptSocket(): Socket | undefined;
|
|
824
863
|
set AcceptSocket(value: Socket | undefined);
|
|
825
864
|
readonly Buffer: byte[] | undefined;
|
|
@@ -863,12 +902,14 @@ export interface __SocketAsyncEventArgs$views {
|
|
|
863
902
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
864
903
|
}
|
|
865
904
|
|
|
866
|
-
export interface SocketAsyncEventArgs$instance extends System_Internal.IDisposable$instance {}
|
|
867
|
-
|
|
868
905
|
export type SocketAsyncEventArgs = SocketAsyncEventArgs$instance & __SocketAsyncEventArgs$views;
|
|
869
906
|
|
|
870
907
|
|
|
871
908
|
export interface SocketException$instance extends Win32Exception {
|
|
909
|
+
readonly __tsonic_type_System_Net_Sockets_SocketException: never;
|
|
910
|
+
|
|
911
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
912
|
+
|
|
872
913
|
readonly ErrorCode: int;
|
|
873
914
|
readonly Message: string;
|
|
874
915
|
readonly SocketErrorCode: SocketError;
|
|
@@ -891,6 +932,10 @@ export type SocketException = SocketException$instance & __SocketException$views
|
|
|
891
932
|
|
|
892
933
|
|
|
893
934
|
export interface TcpClient$instance {
|
|
935
|
+
readonly __tsonic_type_System_Net_Sockets_TcpClient: never;
|
|
936
|
+
|
|
937
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
938
|
+
|
|
894
939
|
readonly Available: int;
|
|
895
940
|
Client: Socket;
|
|
896
941
|
readonly Connected: boolean;
|
|
@@ -941,7 +986,11 @@ export interface __TcpClient$views {
|
|
|
941
986
|
export type TcpClient = TcpClient$instance & __TcpClient$views;
|
|
942
987
|
|
|
943
988
|
|
|
944
|
-
export interface TcpListener$instance {
|
|
989
|
+
export interface TcpListener$instance extends System_Internal.IDisposable$instance {
|
|
990
|
+
readonly __tsonic_type_System_Net_Sockets_TcpListener: never;
|
|
991
|
+
|
|
992
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
993
|
+
|
|
945
994
|
ExclusiveAddressUse: boolean;
|
|
946
995
|
readonly LocalEndpoint: EndPoint;
|
|
947
996
|
readonly Server: Socket;
|
|
@@ -976,12 +1025,14 @@ export interface __TcpListener$views {
|
|
|
976
1025
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
977
1026
|
}
|
|
978
1027
|
|
|
979
|
-
export interface TcpListener$instance extends System_Internal.IDisposable$instance {}
|
|
980
|
-
|
|
981
1028
|
export type TcpListener = TcpListener$instance & __TcpListener$views;
|
|
982
1029
|
|
|
983
1030
|
|
|
984
1031
|
export interface UdpClient$instance {
|
|
1032
|
+
readonly __tsonic_type_System_Net_Sockets_UdpClient: never;
|
|
1033
|
+
|
|
1034
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1035
|
+
|
|
985
1036
|
readonly Available: int;
|
|
986
1037
|
Client: Socket;
|
|
987
1038
|
DontFragment: boolean;
|
|
@@ -1044,6 +1095,8 @@ export type UdpClient = UdpClient$instance & __UdpClient$views;
|
|
|
1044
1095
|
|
|
1045
1096
|
|
|
1046
1097
|
export interface UnixDomainSocketEndPoint$instance extends EndPoint {
|
|
1098
|
+
readonly __tsonic_type_System_Net_Sockets_UnixDomainSocketEndPoint: never;
|
|
1099
|
+
|
|
1047
1100
|
readonly AddressFamily: AddressFamily;
|
|
1048
1101
|
Create(socketAddress: SocketAddress): EndPoint;
|
|
1049
1102
|
Equals(obj: unknown): boolean;
|
|
@@ -80,6 +80,8 @@ export enum WebSocketState {
|
|
|
80
80
|
|
|
81
81
|
|
|
82
82
|
export interface ValueWebSocketReceiveResult$instance {
|
|
83
|
+
readonly __tsonic_type_System_Net_WebSockets_ValueWebSocketReceiveResult: never;
|
|
84
|
+
|
|
83
85
|
readonly Count: int;
|
|
84
86
|
readonly EndOfMessage: boolean;
|
|
85
87
|
readonly MessageType: WebSocketMessageType;
|
|
@@ -94,6 +96,10 @@ export const ValueWebSocketReceiveResult: {
|
|
|
94
96
|
export type ValueWebSocketReceiveResult = ValueWebSocketReceiveResult$instance;
|
|
95
97
|
|
|
96
98
|
export interface ClientWebSocket$instance extends WebSocket$instance {
|
|
99
|
+
readonly __tsonic_type_System_Net_WebSockets_ClientWebSocket: never;
|
|
100
|
+
|
|
101
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
102
|
+
|
|
97
103
|
readonly CloseStatus: Nullable_1<WebSocketCloseStatus>;
|
|
98
104
|
readonly CloseStatusDescription: string | undefined;
|
|
99
105
|
get HttpResponseHeaders(): IReadOnlyDictionary_2<System_Internal.String, IEnumerable_1<System_Internal.String>> | undefined;
|
|
@@ -132,6 +138,8 @@ export type ClientWebSocket = ClientWebSocket$instance & __ClientWebSocket$views
|
|
|
132
138
|
|
|
133
139
|
|
|
134
140
|
export interface ClientWebSocketOptions$instance {
|
|
141
|
+
readonly __tsonic_type_System_Net_WebSockets_ClientWebSocketOptions: never;
|
|
142
|
+
|
|
135
143
|
ClientCertificates: X509CertificateCollection;
|
|
136
144
|
CollectHttpResponseDetails: boolean;
|
|
137
145
|
get Cookies(): CookieContainer | undefined;
|
|
@@ -163,6 +171,8 @@ export const ClientWebSocketOptions: {
|
|
|
163
171
|
export type ClientWebSocketOptions = ClientWebSocketOptions$instance;
|
|
164
172
|
|
|
165
173
|
export interface HttpListenerWebSocketContext$instance extends WebSocketContext {
|
|
174
|
+
readonly __tsonic_type_System_Net_WebSockets_HttpListenerWebSocketContext: never;
|
|
175
|
+
|
|
166
176
|
readonly CookieCollection: CookieCollection;
|
|
167
177
|
readonly Headers: NameValueCollection;
|
|
168
178
|
readonly IsAuthenticated: boolean;
|
|
@@ -184,7 +194,11 @@ export const HttpListenerWebSocketContext: {
|
|
|
184
194
|
|
|
185
195
|
export type HttpListenerWebSocketContext = HttpListenerWebSocketContext$instance;
|
|
186
196
|
|
|
187
|
-
export interface WebSocket$instance {
|
|
197
|
+
export interface WebSocket$instance extends System_Internal.IDisposable$instance {
|
|
198
|
+
readonly __tsonic_type_System_Net_WebSockets_WebSocket: never;
|
|
199
|
+
|
|
200
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
201
|
+
|
|
188
202
|
readonly CloseStatus: Nullable_1<WebSocketCloseStatus>;
|
|
189
203
|
readonly CloseStatusDescription: string | undefined;
|
|
190
204
|
readonly State: WebSocketState;
|
|
@@ -219,12 +233,12 @@ export interface __WebSocket$views {
|
|
|
219
233
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
220
234
|
}
|
|
221
235
|
|
|
222
|
-
export interface WebSocket$instance extends System_Internal.IDisposable$instance {}
|
|
223
|
-
|
|
224
236
|
export type WebSocket = WebSocket$instance & __WebSocket$views;
|
|
225
237
|
|
|
226
238
|
|
|
227
239
|
export interface WebSocketContext$instance {
|
|
240
|
+
readonly __tsonic_type_System_Net_WebSockets_WebSocketContext: never;
|
|
241
|
+
|
|
228
242
|
readonly CookieCollection: CookieCollection;
|
|
229
243
|
readonly Headers: NameValueCollection;
|
|
230
244
|
readonly IsAuthenticated: boolean;
|
|
@@ -247,6 +261,8 @@ export const WebSocketContext: (abstract new() => WebSocketContext) & {
|
|
|
247
261
|
export type WebSocketContext = WebSocketContext$instance;
|
|
248
262
|
|
|
249
263
|
export interface WebSocketCreationOptions$instance {
|
|
264
|
+
readonly __tsonic_type_System_Net_WebSockets_WebSocketCreationOptions: never;
|
|
265
|
+
|
|
250
266
|
get DangerousDeflateOptions(): WebSocketDeflateOptions | undefined;
|
|
251
267
|
set DangerousDeflateOptions(value: WebSocketDeflateOptions | undefined);
|
|
252
268
|
IsServer: boolean;
|
|
@@ -265,6 +281,8 @@ export const WebSocketCreationOptions: {
|
|
|
265
281
|
export type WebSocketCreationOptions = WebSocketCreationOptions$instance;
|
|
266
282
|
|
|
267
283
|
export interface WebSocketDeflateOptions$instance {
|
|
284
|
+
readonly __tsonic_type_System_Net_WebSockets_WebSocketDeflateOptions: never;
|
|
285
|
+
|
|
268
286
|
ClientContextTakeover: boolean;
|
|
269
287
|
ClientMaxWindowBits: int;
|
|
270
288
|
ServerContextTakeover: boolean;
|
|
@@ -280,6 +298,10 @@ export const WebSocketDeflateOptions: {
|
|
|
280
298
|
export type WebSocketDeflateOptions = WebSocketDeflateOptions$instance;
|
|
281
299
|
|
|
282
300
|
export interface WebSocketException$instance extends Win32Exception {
|
|
301
|
+
readonly __tsonic_type_System_Net_WebSockets_WebSocketException: never;
|
|
302
|
+
|
|
303
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
304
|
+
|
|
283
305
|
readonly ErrorCode: int;
|
|
284
306
|
readonly WebSocketErrorCode: WebSocketError;
|
|
285
307
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -312,6 +334,8 @@ export type WebSocketException = WebSocketException$instance & __WebSocketExcept
|
|
|
312
334
|
|
|
313
335
|
|
|
314
336
|
export interface WebSocketReceiveResult$instance {
|
|
337
|
+
readonly __tsonic_type_System_Net_WebSockets_WebSocketReceiveResult: never;
|
|
338
|
+
|
|
315
339
|
readonly CloseStatus: Nullable_1<WebSocketCloseStatus>;
|
|
316
340
|
readonly CloseStatusDescription: string | undefined;
|
|
317
341
|
readonly Count: int;
|
|
@@ -329,6 +353,11 @@ export const WebSocketReceiveResult: {
|
|
|
329
353
|
export type WebSocketReceiveResult = WebSocketReceiveResult$instance;
|
|
330
354
|
|
|
331
355
|
export interface WebSocketStream$instance extends Stream {
|
|
356
|
+
readonly __tsonic_type_System_Net_WebSockets_WebSocketStream: never;
|
|
357
|
+
|
|
358
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
359
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
360
|
+
|
|
332
361
|
readonly CanRead: boolean;
|
|
333
362
|
readonly CanSeek: boolean;
|
|
334
363
|
readonly CanWrite: boolean;
|