@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
|
@@ -360,6 +360,8 @@ export enum TransmitFileOptions {
|
|
|
360
360
|
|
|
361
361
|
|
|
362
362
|
export interface IPPacketInformation$instance {
|
|
363
|
+
readonly __tsonic_type_System_Net_Sockets_IPPacketInformation: never;
|
|
364
|
+
|
|
363
365
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
364
366
|
|
|
365
367
|
readonly Address: IPAddress;
|
|
@@ -386,6 +388,8 @@ export type IPPacketInformation = IPPacketInformation$instance & __IPPacketInfor
|
|
|
386
388
|
|
|
387
389
|
|
|
388
390
|
export interface SocketInformation$instance {
|
|
391
|
+
readonly __tsonic_type_System_Net_Sockets_SocketInformation: never;
|
|
392
|
+
|
|
389
393
|
Options: SocketInformationOptions;
|
|
390
394
|
ProtocolInformation: byte[];
|
|
391
395
|
}
|
|
@@ -399,6 +403,8 @@ export const SocketInformation: {
|
|
|
399
403
|
export type SocketInformation = SocketInformation$instance;
|
|
400
404
|
|
|
401
405
|
export interface SocketReceiveFromResult$instance {
|
|
406
|
+
readonly __tsonic_type_System_Net_Sockets_SocketReceiveFromResult: never;
|
|
407
|
+
|
|
402
408
|
ReceivedBytes: int;
|
|
403
409
|
RemoteEndPoint: EndPoint;
|
|
404
410
|
}
|
|
@@ -412,6 +418,8 @@ export const SocketReceiveFromResult: {
|
|
|
412
418
|
export type SocketReceiveFromResult = SocketReceiveFromResult$instance;
|
|
413
419
|
|
|
414
420
|
export interface SocketReceiveMessageFromResult$instance {
|
|
421
|
+
readonly __tsonic_type_System_Net_Sockets_SocketReceiveMessageFromResult: never;
|
|
422
|
+
|
|
415
423
|
ReceivedBytes: int;
|
|
416
424
|
SocketFlags: SocketFlags;
|
|
417
425
|
RemoteEndPoint: EndPoint;
|
|
@@ -427,6 +435,8 @@ export const SocketReceiveMessageFromResult: {
|
|
|
427
435
|
export type SocketReceiveMessageFromResult = SocketReceiveMessageFromResult$instance;
|
|
428
436
|
|
|
429
437
|
export interface UdpReceiveResult$instance {
|
|
438
|
+
readonly __tsonic_type_System_Net_Sockets_UdpReceiveResult: never;
|
|
439
|
+
|
|
430
440
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
431
441
|
|
|
432
442
|
readonly Buffer: byte[];
|
|
@@ -453,6 +463,8 @@ export type UdpReceiveResult = UdpReceiveResult$instance & __UdpReceiveResult$vi
|
|
|
453
463
|
|
|
454
464
|
|
|
455
465
|
export interface IPv6MulticastOption$instance {
|
|
466
|
+
readonly __tsonic_type_System_Net_Sockets_IPv6MulticastOption: never;
|
|
467
|
+
|
|
456
468
|
Group: IPAddress;
|
|
457
469
|
InterfaceIndex: long;
|
|
458
470
|
}
|
|
@@ -467,6 +479,8 @@ export const IPv6MulticastOption: {
|
|
|
467
479
|
export type IPv6MulticastOption = IPv6MulticastOption$instance;
|
|
468
480
|
|
|
469
481
|
export interface LingerOption$instance {
|
|
482
|
+
readonly __tsonic_type_System_Net_Sockets_LingerOption: never;
|
|
483
|
+
|
|
470
484
|
Enabled: boolean;
|
|
471
485
|
LingerTime: int;
|
|
472
486
|
Equals(comparand: unknown): boolean;
|
|
@@ -482,6 +496,8 @@ export const LingerOption: {
|
|
|
482
496
|
export type LingerOption = LingerOption$instance;
|
|
483
497
|
|
|
484
498
|
export interface MulticastOption$instance {
|
|
499
|
+
readonly __tsonic_type_System_Net_Sockets_MulticastOption: never;
|
|
500
|
+
|
|
485
501
|
Group: IPAddress;
|
|
486
502
|
InterfaceIndex: int;
|
|
487
503
|
get LocalAddress(): IPAddress | undefined;
|
|
@@ -499,6 +515,8 @@ export const MulticastOption: {
|
|
|
499
515
|
export type MulticastOption = MulticastOption$instance;
|
|
500
516
|
|
|
501
517
|
export interface NetworkStream$instance extends Stream {
|
|
518
|
+
readonly __tsonic_type_System_Net_Sockets_NetworkStream: never;
|
|
519
|
+
|
|
502
520
|
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
503
521
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
504
522
|
|
|
@@ -564,6 +582,8 @@ export type NetworkStream = NetworkStream$instance & __NetworkStream$views;
|
|
|
564
582
|
|
|
565
583
|
|
|
566
584
|
export interface SafeSocketHandle$instance extends SafeHandleMinusOneIsInvalid {
|
|
585
|
+
readonly __tsonic_type_System_Net_Sockets_SafeSocketHandle: never;
|
|
586
|
+
|
|
567
587
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
568
588
|
|
|
569
589
|
readonly IsInvalid: boolean;
|
|
@@ -587,6 +607,8 @@ export type SafeSocketHandle = SafeSocketHandle$instance & __SafeSocketHandle$vi
|
|
|
587
607
|
|
|
588
608
|
|
|
589
609
|
export interface SendPacketsElement$instance {
|
|
610
|
+
readonly __tsonic_type_System_Net_Sockets_SendPacketsElement: never;
|
|
611
|
+
|
|
590
612
|
get Buffer(): byte[] | undefined;
|
|
591
613
|
set Buffer(value: byte[] | undefined);
|
|
592
614
|
Count: int;
|
|
@@ -621,6 +643,8 @@ export const SendPacketsElement: {
|
|
|
621
643
|
export type SendPacketsElement = SendPacketsElement$instance;
|
|
622
644
|
|
|
623
645
|
export interface Socket$instance {
|
|
646
|
+
readonly __tsonic_type_System_Net_Sockets_Socket: never;
|
|
647
|
+
|
|
624
648
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
625
649
|
|
|
626
650
|
readonly AddressFamily: AddressFamily;
|
|
@@ -830,7 +854,9 @@ export interface __Socket$views {
|
|
|
830
854
|
export type Socket = Socket$instance & __Socket$views;
|
|
831
855
|
|
|
832
856
|
|
|
833
|
-
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
|
+
|
|
834
860
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
835
861
|
|
|
836
862
|
get AcceptSocket(): Socket | undefined;
|
|
@@ -876,12 +902,12 @@ export interface __SocketAsyncEventArgs$views {
|
|
|
876
902
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
877
903
|
}
|
|
878
904
|
|
|
879
|
-
export interface SocketAsyncEventArgs$instance extends System_Internal.IDisposable$instance {}
|
|
880
|
-
|
|
881
905
|
export type SocketAsyncEventArgs = SocketAsyncEventArgs$instance & __SocketAsyncEventArgs$views;
|
|
882
906
|
|
|
883
907
|
|
|
884
908
|
export interface SocketException$instance extends Win32Exception {
|
|
909
|
+
readonly __tsonic_type_System_Net_Sockets_SocketException: never;
|
|
910
|
+
|
|
885
911
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
886
912
|
|
|
887
913
|
readonly ErrorCode: int;
|
|
@@ -906,6 +932,8 @@ export type SocketException = SocketException$instance & __SocketException$views
|
|
|
906
932
|
|
|
907
933
|
|
|
908
934
|
export interface TcpClient$instance {
|
|
935
|
+
readonly __tsonic_type_System_Net_Sockets_TcpClient: never;
|
|
936
|
+
|
|
909
937
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
910
938
|
|
|
911
939
|
readonly Available: int;
|
|
@@ -958,7 +986,9 @@ export interface __TcpClient$views {
|
|
|
958
986
|
export type TcpClient = TcpClient$instance & __TcpClient$views;
|
|
959
987
|
|
|
960
988
|
|
|
961
|
-
export interface TcpListener$instance {
|
|
989
|
+
export interface TcpListener$instance extends System_Internal.IDisposable$instance {
|
|
990
|
+
readonly __tsonic_type_System_Net_Sockets_TcpListener: never;
|
|
991
|
+
|
|
962
992
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
963
993
|
|
|
964
994
|
ExclusiveAddressUse: boolean;
|
|
@@ -995,12 +1025,12 @@ export interface __TcpListener$views {
|
|
|
995
1025
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
996
1026
|
}
|
|
997
1027
|
|
|
998
|
-
export interface TcpListener$instance extends System_Internal.IDisposable$instance {}
|
|
999
|
-
|
|
1000
1028
|
export type TcpListener = TcpListener$instance & __TcpListener$views;
|
|
1001
1029
|
|
|
1002
1030
|
|
|
1003
1031
|
export interface UdpClient$instance {
|
|
1032
|
+
readonly __tsonic_type_System_Net_Sockets_UdpClient: never;
|
|
1033
|
+
|
|
1004
1034
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1005
1035
|
|
|
1006
1036
|
readonly Available: int;
|
|
@@ -1065,6 +1095,8 @@ export type UdpClient = UdpClient$instance & __UdpClient$views;
|
|
|
1065
1095
|
|
|
1066
1096
|
|
|
1067
1097
|
export interface UnixDomainSocketEndPoint$instance extends EndPoint {
|
|
1098
|
+
readonly __tsonic_type_System_Net_Sockets_UnixDomainSocketEndPoint: never;
|
|
1099
|
+
|
|
1068
1100
|
readonly AddressFamily: AddressFamily;
|
|
1069
1101
|
Create(socketAddress: SocketAddress): EndPoint;
|
|
1070
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,8 @@ 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
|
+
|
|
97
101
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
98
102
|
|
|
99
103
|
readonly CloseStatus: Nullable_1<WebSocketCloseStatus>;
|
|
@@ -134,6 +138,8 @@ export type ClientWebSocket = ClientWebSocket$instance & __ClientWebSocket$views
|
|
|
134
138
|
|
|
135
139
|
|
|
136
140
|
export interface ClientWebSocketOptions$instance {
|
|
141
|
+
readonly __tsonic_type_System_Net_WebSockets_ClientWebSocketOptions: never;
|
|
142
|
+
|
|
137
143
|
ClientCertificates: X509CertificateCollection;
|
|
138
144
|
CollectHttpResponseDetails: boolean;
|
|
139
145
|
get Cookies(): CookieContainer | undefined;
|
|
@@ -165,6 +171,8 @@ export const ClientWebSocketOptions: {
|
|
|
165
171
|
export type ClientWebSocketOptions = ClientWebSocketOptions$instance;
|
|
166
172
|
|
|
167
173
|
export interface HttpListenerWebSocketContext$instance extends WebSocketContext {
|
|
174
|
+
readonly __tsonic_type_System_Net_WebSockets_HttpListenerWebSocketContext: never;
|
|
175
|
+
|
|
168
176
|
readonly CookieCollection: CookieCollection;
|
|
169
177
|
readonly Headers: NameValueCollection;
|
|
170
178
|
readonly IsAuthenticated: boolean;
|
|
@@ -186,7 +194,9 @@ export const HttpListenerWebSocketContext: {
|
|
|
186
194
|
|
|
187
195
|
export type HttpListenerWebSocketContext = HttpListenerWebSocketContext$instance;
|
|
188
196
|
|
|
189
|
-
export interface WebSocket$instance {
|
|
197
|
+
export interface WebSocket$instance extends System_Internal.IDisposable$instance {
|
|
198
|
+
readonly __tsonic_type_System_Net_WebSockets_WebSocket: never;
|
|
199
|
+
|
|
190
200
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
191
201
|
|
|
192
202
|
readonly CloseStatus: Nullable_1<WebSocketCloseStatus>;
|
|
@@ -223,12 +233,12 @@ export interface __WebSocket$views {
|
|
|
223
233
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
224
234
|
}
|
|
225
235
|
|
|
226
|
-
export interface WebSocket$instance extends System_Internal.IDisposable$instance {}
|
|
227
|
-
|
|
228
236
|
export type WebSocket = WebSocket$instance & __WebSocket$views;
|
|
229
237
|
|
|
230
238
|
|
|
231
239
|
export interface WebSocketContext$instance {
|
|
240
|
+
readonly __tsonic_type_System_Net_WebSockets_WebSocketContext: never;
|
|
241
|
+
|
|
232
242
|
readonly CookieCollection: CookieCollection;
|
|
233
243
|
readonly Headers: NameValueCollection;
|
|
234
244
|
readonly IsAuthenticated: boolean;
|
|
@@ -251,6 +261,8 @@ export const WebSocketContext: (abstract new() => WebSocketContext) & {
|
|
|
251
261
|
export type WebSocketContext = WebSocketContext$instance;
|
|
252
262
|
|
|
253
263
|
export interface WebSocketCreationOptions$instance {
|
|
264
|
+
readonly __tsonic_type_System_Net_WebSockets_WebSocketCreationOptions: never;
|
|
265
|
+
|
|
254
266
|
get DangerousDeflateOptions(): WebSocketDeflateOptions | undefined;
|
|
255
267
|
set DangerousDeflateOptions(value: WebSocketDeflateOptions | undefined);
|
|
256
268
|
IsServer: boolean;
|
|
@@ -269,6 +281,8 @@ export const WebSocketCreationOptions: {
|
|
|
269
281
|
export type WebSocketCreationOptions = WebSocketCreationOptions$instance;
|
|
270
282
|
|
|
271
283
|
export interface WebSocketDeflateOptions$instance {
|
|
284
|
+
readonly __tsonic_type_System_Net_WebSockets_WebSocketDeflateOptions: never;
|
|
285
|
+
|
|
272
286
|
ClientContextTakeover: boolean;
|
|
273
287
|
ClientMaxWindowBits: int;
|
|
274
288
|
ServerContextTakeover: boolean;
|
|
@@ -284,6 +298,8 @@ export const WebSocketDeflateOptions: {
|
|
|
284
298
|
export type WebSocketDeflateOptions = WebSocketDeflateOptions$instance;
|
|
285
299
|
|
|
286
300
|
export interface WebSocketException$instance extends Win32Exception {
|
|
301
|
+
readonly __tsonic_type_System_Net_WebSockets_WebSocketException: never;
|
|
302
|
+
|
|
287
303
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
288
304
|
|
|
289
305
|
readonly ErrorCode: int;
|
|
@@ -318,6 +334,8 @@ export type WebSocketException = WebSocketException$instance & __WebSocketExcept
|
|
|
318
334
|
|
|
319
335
|
|
|
320
336
|
export interface WebSocketReceiveResult$instance {
|
|
337
|
+
readonly __tsonic_type_System_Net_WebSockets_WebSocketReceiveResult: never;
|
|
338
|
+
|
|
321
339
|
readonly CloseStatus: Nullable_1<WebSocketCloseStatus>;
|
|
322
340
|
readonly CloseStatusDescription: string | undefined;
|
|
323
341
|
readonly Count: int;
|
|
@@ -335,6 +353,8 @@ export const WebSocketReceiveResult: {
|
|
|
335
353
|
export type WebSocketReceiveResult = WebSocketReceiveResult$instance;
|
|
336
354
|
|
|
337
355
|
export interface WebSocketStream$instance extends Stream {
|
|
356
|
+
readonly __tsonic_type_System_Net_WebSockets_WebSocketStream: never;
|
|
357
|
+
|
|
338
358
|
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
339
359
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
340
360
|
|
|
@@ -378,6 +378,8 @@ export interface IUnsignedNumber_1$instance<TSelf extends IUnsignedNumber_1<TSel
|
|
|
378
378
|
export type IUnsignedNumber_1<TSelf extends IUnsignedNumber_1<TSelf>> = IUnsignedNumber_1$instance<TSelf>;
|
|
379
379
|
|
|
380
380
|
export interface BigInteger$instance extends IAdditionOperators_3<BigInteger, BigInteger, BigInteger>, IBitwiseOperators_3<BigInteger, BigInteger, BigInteger>, IComparisonOperators_3<BigInteger, BigInteger, System_Internal.Boolean>, IEqualityOperators_3<BigInteger, BigInteger, System_Internal.Boolean>, IDecrementOperators_1<BigInteger>, IDivisionOperators_3<BigInteger, BigInteger, BigInteger>, IIncrementOperators_1<BigInteger>, IModulusOperators_3<BigInteger, BigInteger, BigInteger>, IMultiplyOperators_3<BigInteger, BigInteger, BigInteger>, ISubtractionOperators_3<BigInteger, BigInteger, BigInteger>, IUnaryNegationOperators_2<BigInteger, BigInteger>, IUnaryPlusOperators_2<BigInteger, BigInteger>, IShiftOperators_3<BigInteger, System_Internal.Int32, BigInteger> {
|
|
381
|
+
readonly __tsonic_type_System_Numerics_BigInteger: never;
|
|
382
|
+
|
|
381
383
|
readonly __tsonic_iface_System_IComparable: never;
|
|
382
384
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
383
385
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -531,6 +533,8 @@ export type BigInteger = BigInteger$instance & __BigInteger$views;
|
|
|
531
533
|
|
|
532
534
|
|
|
533
535
|
export interface Complex$instance extends IAdditionOperators_3<Complex, Complex, Complex>, IDecrementOperators_1<Complex>, IDivisionOperators_3<Complex, Complex, Complex>, IEqualityOperators_3<Complex, Complex, System_Internal.Boolean>, IIncrementOperators_1<Complex>, IMultiplyOperators_3<Complex, Complex, Complex>, ISubtractionOperators_3<Complex, Complex, Complex>, IUnaryNegationOperators_2<Complex, Complex>, IUnaryPlusOperators_2<Complex, Complex> {
|
|
536
|
+
readonly __tsonic_type_System_Numerics_Complex: never;
|
|
537
|
+
|
|
534
538
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
535
539
|
readonly __tsonic_iface_System_IFormattable: never;
|
|
536
540
|
readonly __tsonic_iface_System_IParsable_1: never;
|
|
@@ -660,6 +664,8 @@ export type Complex = Complex$instance & __Complex$views;
|
|
|
660
664
|
|
|
661
665
|
|
|
662
666
|
export interface Matrix3x2$instance {
|
|
667
|
+
readonly __tsonic_type_System_Numerics_Matrix3x2: never;
|
|
668
|
+
|
|
663
669
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
664
670
|
|
|
665
671
|
M11: float;
|
|
@@ -729,6 +735,8 @@ export type Matrix3x2 = Matrix3x2$instance & __Matrix3x2$views;
|
|
|
729
735
|
|
|
730
736
|
|
|
731
737
|
export interface Matrix4x4$instance {
|
|
738
|
+
readonly __tsonic_type_System_Numerics_Matrix4x4: never;
|
|
739
|
+
|
|
732
740
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
733
741
|
|
|
734
742
|
M11: float;
|
|
@@ -842,6 +850,8 @@ export type Matrix4x4 = Matrix4x4$instance & __Matrix4x4$views;
|
|
|
842
850
|
|
|
843
851
|
|
|
844
852
|
export interface Plane$instance {
|
|
853
|
+
readonly __tsonic_type_System_Numerics_Plane: never;
|
|
854
|
+
|
|
845
855
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
846
856
|
|
|
847
857
|
Normal: Vector3;
|
|
@@ -881,6 +891,8 @@ export type Plane = Plane$instance & __Plane$views;
|
|
|
881
891
|
|
|
882
892
|
|
|
883
893
|
export interface Quaternion$instance {
|
|
894
|
+
readonly __tsonic_type_System_Numerics_Quaternion: never;
|
|
895
|
+
|
|
884
896
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
885
897
|
|
|
886
898
|
X: float;
|
|
@@ -934,7 +946,9 @@ export interface __Quaternion$views {
|
|
|
934
946
|
export type Quaternion = Quaternion$instance & __Quaternion$views;
|
|
935
947
|
|
|
936
948
|
|
|
937
|
-
export interface TotalOrderIeee754Comparer_1$instance<T extends IFloatingPointIeee754_1<T>> {
|
|
949
|
+
export interface TotalOrderIeee754Comparer_1$instance<T extends IFloatingPointIeee754_1<T>> extends System_Collections_Generic_Internal.IComparer_1$instance<T> {
|
|
950
|
+
readonly __tsonic_type_System_Numerics_TotalOrderIeee754Comparer_1: never;
|
|
951
|
+
|
|
938
952
|
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
939
953
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
940
954
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -962,12 +976,12 @@ export interface __TotalOrderIeee754Comparer_1$views<T extends IFloatingPointIee
|
|
|
962
976
|
Equals(other: TotalOrderIeee754Comparer_1<T>): boolean;
|
|
963
977
|
}
|
|
964
978
|
|
|
965
|
-
export interface TotalOrderIeee754Comparer_1$instance<T extends IFloatingPointIeee754_1<T>> extends System_Collections_Generic_Internal.IComparer_1$instance<T> {}
|
|
966
|
-
|
|
967
979
|
export type TotalOrderIeee754Comparer_1<T extends IFloatingPointIeee754_1<T>> = TotalOrderIeee754Comparer_1$instance<T> & __TotalOrderIeee754Comparer_1$views<T>;
|
|
968
980
|
|
|
969
981
|
|
|
970
|
-
export interface Vector_1$instance<T> extends IAdditionOperators_3<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IBitwiseOperators_3<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IDivisionOperators_3<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IEqualityOperators_3<Vector_1<T>, Vector_1<T>, System_Internal.Boolean>, IMultiplyOperators_3<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IShiftOperators_3<Vector_1<T>, System_Internal.Int32, Vector_1<T>>, ISubtractionOperators_3<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IUnaryNegationOperators_2<Vector_1<T>, Vector_1<T>>, IUnaryPlusOperators_2<Vector_1<T>, Vector_1<T>> {
|
|
982
|
+
export interface Vector_1$instance<T> extends IAdditionOperators_3<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IBitwiseOperators_3<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IDivisionOperators_3<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IEqualityOperators_3<Vector_1<T>, Vector_1<T>, System_Internal.Boolean>, IMultiplyOperators_3<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IShiftOperators_3<Vector_1<T>, System_Internal.Int32, Vector_1<T>>, ISubtractionOperators_3<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IUnaryNegationOperators_2<Vector_1<T>, Vector_1<T>>, IUnaryPlusOperators_2<Vector_1<T>, Vector_1<T>>, IAdditionOperators_3$instance<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IBitwiseOperators_3$instance<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IDivisionOperators_3$instance<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IEqualityOperators_3$instance<Vector_1<T>, Vector_1<T>, System_Internal.Boolean>, IMultiplyOperators_3$instance<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IShiftOperators_3$instance<Vector_1<T>, System_Internal.Int32, Vector_1<T>>, ISubtractionOperators_3$instance<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IUnaryNegationOperators_2$instance<Vector_1<T>, Vector_1<T>>, IUnaryPlusOperators_2$instance<Vector_1<T>, Vector_1<T>> {
|
|
983
|
+
readonly __tsonic_type_System_Numerics_Vector_1: never;
|
|
984
|
+
|
|
971
985
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
972
986
|
readonly __tsonic_iface_System_IFormattable: never;
|
|
973
987
|
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
@@ -1020,12 +1034,12 @@ export interface __Vector_1$views<T> {
|
|
|
1020
1034
|
Equals(other: Vector_1<T>): boolean;
|
|
1021
1035
|
}
|
|
1022
1036
|
|
|
1023
|
-
export interface Vector_1$instance<T> extends IAdditionOperators_3$instance<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IBitwiseOperators_3$instance<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IDivisionOperators_3$instance<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IEqualityOperators_3$instance<Vector_1<T>, Vector_1<T>, System_Internal.Boolean>, IMultiplyOperators_3$instance<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IShiftOperators_3$instance<Vector_1<T>, System_Internal.Int32, Vector_1<T>>, ISubtractionOperators_3$instance<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IUnaryNegationOperators_2$instance<Vector_1<T>, Vector_1<T>>, IUnaryPlusOperators_2$instance<Vector_1<T>, Vector_1<T>> {}
|
|
1024
|
-
|
|
1025
1037
|
export type Vector_1<T> = Vector_1$instance<T> & __Vector_1$views<T>;
|
|
1026
1038
|
|
|
1027
1039
|
|
|
1028
1040
|
export interface Vector2$instance {
|
|
1041
|
+
readonly __tsonic_type_System_Numerics_Vector2: never;
|
|
1042
|
+
|
|
1029
1043
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1030
1044
|
readonly __tsonic_iface_System_IFormattable: never;
|
|
1031
1045
|
|
|
@@ -1187,6 +1201,8 @@ export type Vector2 = Vector2$instance & __Vector2$views;
|
|
|
1187
1201
|
|
|
1188
1202
|
|
|
1189
1203
|
export interface Vector3$instance {
|
|
1204
|
+
readonly __tsonic_type_System_Numerics_Vector3: never;
|
|
1205
|
+
|
|
1190
1206
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1191
1207
|
readonly __tsonic_iface_System_IFormattable: never;
|
|
1192
1208
|
|
|
@@ -1350,6 +1366,8 @@ export type Vector3 = Vector3$instance & __Vector3$views;
|
|
|
1350
1366
|
|
|
1351
1367
|
|
|
1352
1368
|
export interface Vector4$instance {
|
|
1369
|
+
readonly __tsonic_type_System_Numerics_Vector4: never;
|
|
1370
|
+
|
|
1353
1371
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1354
1372
|
readonly __tsonic_iface_System_IFormattable: never;
|
|
1355
1373
|
|