@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
|
@@ -92,6 +92,8 @@ export type SendCompletedEventHandler = (sender: unknown, e: AsyncCompletedEvent
|
|
|
92
92
|
|
|
93
93
|
|
|
94
94
|
export interface AlternateView$instance extends AttachmentBase$instance {
|
|
95
|
+
readonly __tsonic_type_System_Net_Mail_AlternateView: never;
|
|
96
|
+
|
|
95
97
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
96
98
|
|
|
97
99
|
get BaseUri(): Uri | undefined;
|
|
@@ -122,7 +124,9 @@ export interface __AlternateView$views {
|
|
|
122
124
|
export type AlternateView = AlternateView$instance & __AlternateView$views;
|
|
123
125
|
|
|
124
126
|
|
|
125
|
-
export interface AlternateViewCollection$instance extends Collection_1<AlternateView> {
|
|
127
|
+
export interface AlternateViewCollection$instance extends Collection_1<AlternateView> extends System_Internal.IDisposable$instance {
|
|
128
|
+
readonly __tsonic_type_System_Net_Mail_AlternateViewCollection: never;
|
|
129
|
+
|
|
126
130
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
127
131
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
128
132
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -171,12 +175,12 @@ export interface __AlternateViewCollection$views {
|
|
|
171
175
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
172
176
|
}
|
|
173
177
|
|
|
174
|
-
export interface AlternateViewCollection$instance extends System_Internal.IDisposable$instance {}
|
|
175
|
-
|
|
176
178
|
export type AlternateViewCollection = AlternateViewCollection$instance & __AlternateViewCollection$views;
|
|
177
179
|
|
|
178
180
|
|
|
179
181
|
export interface Attachment$instance extends AttachmentBase$instance {
|
|
182
|
+
readonly __tsonic_type_System_Net_Mail_Attachment: never;
|
|
183
|
+
|
|
180
184
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
181
185
|
|
|
182
186
|
readonly ContentDisposition: ContentDisposition | undefined;
|
|
@@ -210,6 +214,8 @@ export type Attachment = Attachment$instance & __Attachment$views;
|
|
|
210
214
|
|
|
211
215
|
|
|
212
216
|
export interface AttachmentBase$instance {
|
|
217
|
+
readonly __tsonic_type_System_Net_Mail_AttachmentBase: never;
|
|
218
|
+
|
|
213
219
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
214
220
|
|
|
215
221
|
ContentId: string;
|
|
@@ -232,7 +238,9 @@ export interface __AttachmentBase$views {
|
|
|
232
238
|
export type AttachmentBase = AttachmentBase$instance & __AttachmentBase$views;
|
|
233
239
|
|
|
234
240
|
|
|
235
|
-
export interface AttachmentCollection$instance extends Collection_1<Attachment> {
|
|
241
|
+
export interface AttachmentCollection$instance extends Collection_1<Attachment> extends System_Internal.IDisposable$instance {
|
|
242
|
+
readonly __tsonic_type_System_Net_Mail_AttachmentCollection: never;
|
|
243
|
+
|
|
236
244
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
237
245
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
238
246
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -281,12 +289,12 @@ export interface __AttachmentCollection$views {
|
|
|
281
289
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
282
290
|
}
|
|
283
291
|
|
|
284
|
-
export interface AttachmentCollection$instance extends System_Internal.IDisposable$instance {}
|
|
285
|
-
|
|
286
292
|
export type AttachmentCollection = AttachmentCollection$instance & __AttachmentCollection$views;
|
|
287
293
|
|
|
288
294
|
|
|
289
295
|
export interface LinkedResource$instance extends AttachmentBase$instance {
|
|
296
|
+
readonly __tsonic_type_System_Net_Mail_LinkedResource: never;
|
|
297
|
+
|
|
290
298
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
291
299
|
|
|
292
300
|
get ContentLink(): Uri | undefined;
|
|
@@ -316,7 +324,9 @@ export interface __LinkedResource$views {
|
|
|
316
324
|
export type LinkedResource = LinkedResource$instance & __LinkedResource$views;
|
|
317
325
|
|
|
318
326
|
|
|
319
|
-
export interface LinkedResourceCollection$instance extends Collection_1<LinkedResource> {
|
|
327
|
+
export interface LinkedResourceCollection$instance extends Collection_1<LinkedResource> extends System_Internal.IDisposable$instance {
|
|
328
|
+
readonly __tsonic_type_System_Net_Mail_LinkedResourceCollection: never;
|
|
329
|
+
|
|
320
330
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
321
331
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
322
332
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -365,12 +375,12 @@ export interface __LinkedResourceCollection$views {
|
|
|
365
375
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
366
376
|
}
|
|
367
377
|
|
|
368
|
-
export interface LinkedResourceCollection$instance extends System_Internal.IDisposable$instance {}
|
|
369
|
-
|
|
370
378
|
export type LinkedResourceCollection = LinkedResourceCollection$instance & __LinkedResourceCollection$views;
|
|
371
379
|
|
|
372
380
|
|
|
373
381
|
export interface MailAddress$instance {
|
|
382
|
+
readonly __tsonic_type_System_Net_Mail_MailAddress: never;
|
|
383
|
+
|
|
374
384
|
readonly Address: string;
|
|
375
385
|
readonly DisplayName: string;
|
|
376
386
|
readonly Host: string;
|
|
@@ -394,6 +404,8 @@ export const MailAddress: {
|
|
|
394
404
|
export type MailAddress = MailAddress$instance;
|
|
395
405
|
|
|
396
406
|
export interface MailAddressCollection$instance extends Collection_1<MailAddress> {
|
|
407
|
+
readonly __tsonic_type_System_Net_Mail_MailAddressCollection: never;
|
|
408
|
+
|
|
397
409
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
398
410
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
399
411
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -443,6 +455,8 @@ export type MailAddressCollection = MailAddressCollection$instance & __MailAddre
|
|
|
443
455
|
|
|
444
456
|
|
|
445
457
|
export interface MailMessage$instance {
|
|
458
|
+
readonly __tsonic_type_System_Net_Mail_MailMessage: never;
|
|
459
|
+
|
|
446
460
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
447
461
|
|
|
448
462
|
readonly AlternateViews: AlternateViewCollection;
|
|
@@ -491,6 +505,8 @@ export type MailMessage = MailMessage$instance & __MailMessage$views;
|
|
|
491
505
|
|
|
492
506
|
|
|
493
507
|
export interface SmtpClient$instance {
|
|
508
|
+
readonly __tsonic_type_System_Net_Mail_SmtpClient: never;
|
|
509
|
+
|
|
494
510
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
495
511
|
|
|
496
512
|
readonly ClientCertificates: X509CertificateCollection;
|
|
@@ -538,6 +554,8 @@ export type SmtpClient = SmtpClient$instance & __SmtpClient$views;
|
|
|
538
554
|
|
|
539
555
|
|
|
540
556
|
export interface SmtpException$instance extends Exception {
|
|
557
|
+
readonly __tsonic_type_System_Net_Mail_SmtpException: never;
|
|
558
|
+
|
|
541
559
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
542
560
|
|
|
543
561
|
StatusCode: SmtpStatusCode;
|
|
@@ -562,6 +580,8 @@ export type SmtpException = SmtpException$instance & __SmtpException$views;
|
|
|
562
580
|
|
|
563
581
|
|
|
564
582
|
export interface SmtpFailedRecipientException$instance extends SmtpException$instance {
|
|
583
|
+
readonly __tsonic_type_System_Net_Mail_SmtpFailedRecipientException: never;
|
|
584
|
+
|
|
565
585
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
566
586
|
|
|
567
587
|
readonly FailedRecipient: string | undefined;
|
|
@@ -587,6 +607,8 @@ export type SmtpFailedRecipientException = SmtpFailedRecipientException$instance
|
|
|
587
607
|
|
|
588
608
|
|
|
589
609
|
export interface SmtpFailedRecipientsException$instance extends SmtpFailedRecipientException$instance {
|
|
610
|
+
readonly __tsonic_type_System_Net_Mail_SmtpFailedRecipientsException: never;
|
|
611
|
+
|
|
590
612
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
591
613
|
|
|
592
614
|
readonly InnerExceptions: SmtpFailedRecipientException[];
|
|
@@ -20,6 +20,8 @@ export enum TransferEncoding {
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
export interface ContentDisposition$instance {
|
|
23
|
+
readonly __tsonic_type_System_Net_Mime_ContentDisposition: never;
|
|
24
|
+
|
|
23
25
|
CreationDate: DateTime;
|
|
24
26
|
DispositionType: string;
|
|
25
27
|
get FileName(): string | undefined;
|
|
@@ -44,6 +46,8 @@ export const ContentDisposition: {
|
|
|
44
46
|
export type ContentDisposition = ContentDisposition$instance;
|
|
45
47
|
|
|
46
48
|
export interface ContentType$instance {
|
|
49
|
+
readonly __tsonic_type_System_Net_Mime_ContentType: never;
|
|
50
|
+
|
|
47
51
|
get Boundary(): string | undefined;
|
|
48
52
|
set Boundary(value: string | undefined);
|
|
49
53
|
get CharSet(): string | undefined;
|
|
@@ -178,6 +178,8 @@ export type PingCompletedEventHandler = (sender: unknown, e: PingCompletedEventA
|
|
|
178
178
|
|
|
179
179
|
|
|
180
180
|
export interface GatewayIPAddressInformation$instance {
|
|
181
|
+
readonly __tsonic_type_System_Net_NetworkInformation_GatewayIPAddressInformation: never;
|
|
182
|
+
|
|
181
183
|
readonly Address: IPAddress;
|
|
182
184
|
}
|
|
183
185
|
|
|
@@ -189,6 +191,8 @@ export const GatewayIPAddressInformation: (abstract new() => GatewayIPAddressInf
|
|
|
189
191
|
export type GatewayIPAddressInformation = GatewayIPAddressInformation$instance;
|
|
190
192
|
|
|
191
193
|
export interface GatewayIPAddressInformationCollection$instance {
|
|
194
|
+
readonly __tsonic_type_System_Net_NetworkInformation_GatewayIPAddressInformationCollection: never;
|
|
195
|
+
|
|
192
196
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
193
197
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
194
198
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -219,6 +223,8 @@ export type GatewayIPAddressInformationCollection = GatewayIPAddressInformationC
|
|
|
219
223
|
|
|
220
224
|
|
|
221
225
|
export interface IcmpV4Statistics$instance {
|
|
226
|
+
readonly __tsonic_type_System_Net_NetworkInformation_IcmpV4Statistics: never;
|
|
227
|
+
|
|
222
228
|
readonly AddressMaskRepliesReceived: long;
|
|
223
229
|
readonly AddressMaskRepliesSent: long;
|
|
224
230
|
readonly AddressMaskRequestsReceived: long;
|
|
@@ -255,6 +261,8 @@ export const IcmpV4Statistics: (abstract new() => IcmpV4Statistics) & {
|
|
|
255
261
|
export type IcmpV4Statistics = IcmpV4Statistics$instance;
|
|
256
262
|
|
|
257
263
|
export interface IcmpV6Statistics$instance {
|
|
264
|
+
readonly __tsonic_type_System_Net_NetworkInformation_IcmpV6Statistics: never;
|
|
265
|
+
|
|
258
266
|
readonly DestinationUnreachableMessagesReceived: long;
|
|
259
267
|
readonly DestinationUnreachableMessagesSent: long;
|
|
260
268
|
readonly EchoRepliesReceived: long;
|
|
@@ -297,6 +305,8 @@ export const IcmpV6Statistics: (abstract new() => IcmpV6Statistics) & {
|
|
|
297
305
|
export type IcmpV6Statistics = IcmpV6Statistics$instance;
|
|
298
306
|
|
|
299
307
|
export interface IPAddressCollection$instance {
|
|
308
|
+
readonly __tsonic_type_System_Net_NetworkInformation_IPAddressCollection: never;
|
|
309
|
+
|
|
300
310
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
301
311
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
302
312
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -327,6 +337,8 @@ export type IPAddressCollection = IPAddressCollection$instance & __IPAddressColl
|
|
|
327
337
|
|
|
328
338
|
|
|
329
339
|
export interface IPAddressInformation$instance {
|
|
340
|
+
readonly __tsonic_type_System_Net_NetworkInformation_IPAddressInformation: never;
|
|
341
|
+
|
|
330
342
|
readonly Address: IPAddress;
|
|
331
343
|
readonly IsDnsEligible: boolean;
|
|
332
344
|
readonly IsTransient: boolean;
|
|
@@ -340,6 +352,8 @@ export const IPAddressInformation: (abstract new() => IPAddressInformation) & {
|
|
|
340
352
|
export type IPAddressInformation = IPAddressInformation$instance;
|
|
341
353
|
|
|
342
354
|
export interface IPAddressInformationCollection$instance {
|
|
355
|
+
readonly __tsonic_type_System_Net_NetworkInformation_IPAddressInformationCollection: never;
|
|
356
|
+
|
|
343
357
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
344
358
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
345
359
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -370,6 +384,8 @@ export type IPAddressInformationCollection = IPAddressInformationCollection$inst
|
|
|
370
384
|
|
|
371
385
|
|
|
372
386
|
export interface IPGlobalProperties$instance {
|
|
387
|
+
readonly __tsonic_type_System_Net_NetworkInformation_IPGlobalProperties: never;
|
|
388
|
+
|
|
373
389
|
readonly DhcpScopeName: string;
|
|
374
390
|
readonly DomainName: string;
|
|
375
391
|
readonly HostName: string;
|
|
@@ -401,6 +417,8 @@ export const IPGlobalProperties: (abstract new() => IPGlobalProperties) & {
|
|
|
401
417
|
export type IPGlobalProperties = IPGlobalProperties$instance;
|
|
402
418
|
|
|
403
419
|
export interface IPGlobalStatistics$instance {
|
|
420
|
+
readonly __tsonic_type_System_Net_NetworkInformation_IPGlobalStatistics: never;
|
|
421
|
+
|
|
404
422
|
readonly DefaultTtl: int;
|
|
405
423
|
readonly ForwardingEnabled: boolean;
|
|
406
424
|
readonly NumberOfInterfaces: int;
|
|
@@ -433,6 +451,8 @@ export const IPGlobalStatistics: (abstract new() => IPGlobalStatistics) & {
|
|
|
433
451
|
export type IPGlobalStatistics = IPGlobalStatistics$instance;
|
|
434
452
|
|
|
435
453
|
export interface IPInterfaceProperties$instance {
|
|
454
|
+
readonly __tsonic_type_System_Net_NetworkInformation_IPInterfaceProperties: never;
|
|
455
|
+
|
|
436
456
|
readonly AnycastAddresses: IPAddressInformationCollection;
|
|
437
457
|
readonly DhcpServerAddresses: IPAddressCollection;
|
|
438
458
|
readonly DnsAddresses: IPAddressCollection;
|
|
@@ -455,6 +475,8 @@ export const IPInterfaceProperties: (abstract new() => IPInterfaceProperties) &
|
|
|
455
475
|
export type IPInterfaceProperties = IPInterfaceProperties$instance;
|
|
456
476
|
|
|
457
477
|
export interface IPInterfaceStatistics$instance {
|
|
478
|
+
readonly __tsonic_type_System_Net_NetworkInformation_IPInterfaceStatistics: never;
|
|
479
|
+
|
|
458
480
|
readonly BytesReceived: long;
|
|
459
481
|
readonly BytesSent: long;
|
|
460
482
|
readonly IncomingPacketsDiscarded: long;
|
|
@@ -477,6 +499,8 @@ export const IPInterfaceStatistics: (abstract new() => IPInterfaceStatistics) &
|
|
|
477
499
|
export type IPInterfaceStatistics = IPInterfaceStatistics$instance;
|
|
478
500
|
|
|
479
501
|
export interface IPv4InterfaceProperties$instance {
|
|
502
|
+
readonly __tsonic_type_System_Net_NetworkInformation_IPv4InterfaceProperties: never;
|
|
503
|
+
|
|
480
504
|
readonly Index: int;
|
|
481
505
|
readonly IsAutomaticPrivateAddressingActive: boolean;
|
|
482
506
|
readonly IsAutomaticPrivateAddressingEnabled: boolean;
|
|
@@ -494,6 +518,8 @@ export const IPv4InterfaceProperties: (abstract new() => IPv4InterfaceProperties
|
|
|
494
518
|
export type IPv4InterfaceProperties = IPv4InterfaceProperties$instance;
|
|
495
519
|
|
|
496
520
|
export interface IPv4InterfaceStatistics$instance {
|
|
521
|
+
readonly __tsonic_type_System_Net_NetworkInformation_IPv4InterfaceStatistics: never;
|
|
522
|
+
|
|
497
523
|
readonly BytesReceived: long;
|
|
498
524
|
readonly BytesSent: long;
|
|
499
525
|
readonly IncomingPacketsDiscarded: long;
|
|
@@ -516,6 +542,8 @@ export const IPv4InterfaceStatistics: (abstract new() => IPv4InterfaceStatistics
|
|
|
516
542
|
export type IPv4InterfaceStatistics = IPv4InterfaceStatistics$instance;
|
|
517
543
|
|
|
518
544
|
export interface IPv6InterfaceProperties$instance {
|
|
545
|
+
readonly __tsonic_type_System_Net_NetworkInformation_IPv6InterfaceProperties: never;
|
|
546
|
+
|
|
519
547
|
readonly Index: int;
|
|
520
548
|
readonly Mtu: int;
|
|
521
549
|
GetScopeId(scopeLevel: ScopeLevel): long;
|
|
@@ -529,6 +557,8 @@ export const IPv6InterfaceProperties: (abstract new() => IPv6InterfaceProperties
|
|
|
529
557
|
export type IPv6InterfaceProperties = IPv6InterfaceProperties$instance;
|
|
530
558
|
|
|
531
559
|
export interface MulticastIPAddressInformation$instance extends IPAddressInformation {
|
|
560
|
+
readonly __tsonic_type_System_Net_NetworkInformation_MulticastIPAddressInformation: never;
|
|
561
|
+
|
|
532
562
|
readonly AddressPreferredLifetime: long;
|
|
533
563
|
readonly AddressValidLifetime: long;
|
|
534
564
|
readonly DhcpLeaseLifetime: long;
|
|
@@ -545,6 +575,8 @@ export const MulticastIPAddressInformation: (abstract new() => MulticastIPAddres
|
|
|
545
575
|
export type MulticastIPAddressInformation = MulticastIPAddressInformation$instance;
|
|
546
576
|
|
|
547
577
|
export interface MulticastIPAddressInformationCollection$instance {
|
|
578
|
+
readonly __tsonic_type_System_Net_NetworkInformation_MulticastIPAddressInformationCollection: never;
|
|
579
|
+
|
|
548
580
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
549
581
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
550
582
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -575,6 +607,8 @@ export type MulticastIPAddressInformationCollection = MulticastIPAddressInformat
|
|
|
575
607
|
|
|
576
608
|
|
|
577
609
|
export interface NetworkAvailabilityEventArgs$instance extends EventArgs {
|
|
610
|
+
readonly __tsonic_type_System_Net_NetworkInformation_NetworkAvailabilityEventArgs: never;
|
|
611
|
+
|
|
578
612
|
readonly IsAvailable: boolean;
|
|
579
613
|
}
|
|
580
614
|
|
|
@@ -586,6 +620,8 @@ export const NetworkAvailabilityEventArgs: {
|
|
|
586
620
|
export type NetworkAvailabilityEventArgs = NetworkAvailabilityEventArgs$instance;
|
|
587
621
|
|
|
588
622
|
export interface NetworkChange$instance {
|
|
623
|
+
readonly __tsonic_type_System_Net_NetworkInformation_NetworkChange: never;
|
|
624
|
+
|
|
589
625
|
}
|
|
590
626
|
|
|
591
627
|
|
|
@@ -598,6 +634,8 @@ export const NetworkChange: {
|
|
|
598
634
|
export type NetworkChange = NetworkChange$instance;
|
|
599
635
|
|
|
600
636
|
export interface NetworkInformationException$instance extends Win32Exception {
|
|
637
|
+
readonly __tsonic_type_System_Net_NetworkInformation_NetworkInformationException: never;
|
|
638
|
+
|
|
601
639
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
602
640
|
|
|
603
641
|
readonly ErrorCode: int;
|
|
@@ -619,6 +657,8 @@ export type NetworkInformationException = NetworkInformationException$instance &
|
|
|
619
657
|
|
|
620
658
|
|
|
621
659
|
export interface NetworkInterface$instance {
|
|
660
|
+
readonly __tsonic_type_System_Net_NetworkInformation_NetworkInterface: never;
|
|
661
|
+
|
|
622
662
|
readonly Description: string;
|
|
623
663
|
readonly Id: string;
|
|
624
664
|
readonly IsReceiveOnly: boolean;
|
|
@@ -646,6 +686,8 @@ export const NetworkInterface: (abstract new() => NetworkInterface) & {
|
|
|
646
686
|
export type NetworkInterface = NetworkInterface$instance;
|
|
647
687
|
|
|
648
688
|
export interface PhysicalAddress$instance {
|
|
689
|
+
readonly __tsonic_type_System_Net_NetworkInformation_PhysicalAddress: never;
|
|
690
|
+
|
|
649
691
|
Equals(comparand: unknown): boolean;
|
|
650
692
|
GetAddressBytes(): byte[];
|
|
651
693
|
GetHashCode(): int;
|
|
@@ -666,6 +708,8 @@ export const PhysicalAddress: {
|
|
|
666
708
|
export type PhysicalAddress = PhysicalAddress$instance;
|
|
667
709
|
|
|
668
710
|
export interface Ping$instance extends Component {
|
|
711
|
+
readonly __tsonic_type_System_Net_NetworkInformation_Ping: never;
|
|
712
|
+
|
|
669
713
|
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
670
714
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
671
715
|
|
|
@@ -717,6 +761,8 @@ export type Ping = Ping$instance & __Ping$views;
|
|
|
717
761
|
|
|
718
762
|
|
|
719
763
|
export interface PingCompletedEventArgs$instance extends AsyncCompletedEventArgs {
|
|
764
|
+
readonly __tsonic_type_System_Net_NetworkInformation_PingCompletedEventArgs: never;
|
|
765
|
+
|
|
720
766
|
readonly Reply: PingReply | undefined;
|
|
721
767
|
}
|
|
722
768
|
|
|
@@ -728,6 +774,8 @@ export const PingCompletedEventArgs: {
|
|
|
728
774
|
export type PingCompletedEventArgs = PingCompletedEventArgs$instance;
|
|
729
775
|
|
|
730
776
|
export interface PingException$instance extends InvalidOperationException {
|
|
777
|
+
readonly __tsonic_type_System_Net_NetworkInformation_PingException: never;
|
|
778
|
+
|
|
731
779
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
732
780
|
|
|
733
781
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -748,6 +796,8 @@ export type PingException = PingException$instance & __PingException$views;
|
|
|
748
796
|
|
|
749
797
|
|
|
750
798
|
export interface PingOptions$instance {
|
|
799
|
+
readonly __tsonic_type_System_Net_NetworkInformation_PingOptions: never;
|
|
800
|
+
|
|
751
801
|
DontFragment: boolean;
|
|
752
802
|
Ttl: int;
|
|
753
803
|
}
|
|
@@ -762,6 +812,8 @@ export const PingOptions: {
|
|
|
762
812
|
export type PingOptions = PingOptions$instance;
|
|
763
813
|
|
|
764
814
|
export interface PingReply$instance {
|
|
815
|
+
readonly __tsonic_type_System_Net_NetworkInformation_PingReply: never;
|
|
816
|
+
|
|
765
817
|
readonly Address: IPAddress;
|
|
766
818
|
readonly Buffer: byte[];
|
|
767
819
|
readonly Options: PingOptions | undefined;
|
|
@@ -777,6 +829,8 @@ export const PingReply: {
|
|
|
777
829
|
export type PingReply = PingReply$instance;
|
|
778
830
|
|
|
779
831
|
export interface TcpConnectionInformation$instance {
|
|
832
|
+
readonly __tsonic_type_System_Net_NetworkInformation_TcpConnectionInformation: never;
|
|
833
|
+
|
|
780
834
|
readonly LocalEndPoint: IPEndPoint;
|
|
781
835
|
readonly RemoteEndPoint: IPEndPoint;
|
|
782
836
|
readonly State: TcpState;
|
|
@@ -790,6 +844,8 @@ export const TcpConnectionInformation: (abstract new() => TcpConnectionInformati
|
|
|
790
844
|
export type TcpConnectionInformation = TcpConnectionInformation$instance;
|
|
791
845
|
|
|
792
846
|
export interface TcpStatistics$instance {
|
|
847
|
+
readonly __tsonic_type_System_Net_NetworkInformation_TcpStatistics: never;
|
|
848
|
+
|
|
793
849
|
readonly ConnectionsAccepted: long;
|
|
794
850
|
readonly ConnectionsInitiated: long;
|
|
795
851
|
readonly CumulativeConnections: long;
|
|
@@ -814,6 +870,8 @@ export const TcpStatistics: (abstract new() => TcpStatistics) & {
|
|
|
814
870
|
export type TcpStatistics = TcpStatistics$instance;
|
|
815
871
|
|
|
816
872
|
export interface UdpStatistics$instance {
|
|
873
|
+
readonly __tsonic_type_System_Net_NetworkInformation_UdpStatistics: never;
|
|
874
|
+
|
|
817
875
|
readonly DatagramsReceived: long;
|
|
818
876
|
readonly DatagramsSent: long;
|
|
819
877
|
readonly IncomingDatagramsDiscarded: long;
|
|
@@ -829,6 +887,8 @@ export const UdpStatistics: (abstract new() => UdpStatistics) & {
|
|
|
829
887
|
export type UdpStatistics = UdpStatistics$instance;
|
|
830
888
|
|
|
831
889
|
export interface UnicastIPAddressInformation$instance extends IPAddressInformation {
|
|
890
|
+
readonly __tsonic_type_System_Net_NetworkInformation_UnicastIPAddressInformation: never;
|
|
891
|
+
|
|
832
892
|
readonly AddressPreferredLifetime: long;
|
|
833
893
|
readonly AddressValidLifetime: long;
|
|
834
894
|
readonly DhcpLeaseLifetime: long;
|
|
@@ -847,6 +907,8 @@ export const UnicastIPAddressInformation: (abstract new() => UnicastIPAddressInf
|
|
|
847
907
|
export type UnicastIPAddressInformation = UnicastIPAddressInformation$instance;
|
|
848
908
|
|
|
849
909
|
export interface UnicastIPAddressInformationCollection$instance {
|
|
910
|
+
readonly __tsonic_type_System_Net_NetworkInformation_UnicastIPAddressInformationCollection: never;
|
|
911
|
+
|
|
850
912
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
851
913
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
852
914
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -52,6 +52,8 @@ export enum QuicStreamType {
|
|
|
52
52
|
|
|
53
53
|
|
|
54
54
|
export interface QuicStreamCapacityChangedArgs$instance {
|
|
55
|
+
readonly __tsonic_type_System_Net_Quic_QuicStreamCapacityChangedArgs: never;
|
|
56
|
+
|
|
55
57
|
BidirectionalIncrement: int;
|
|
56
58
|
UnidirectionalIncrement: int;
|
|
57
59
|
}
|
|
@@ -65,6 +67,8 @@ export const QuicStreamCapacityChangedArgs: {
|
|
|
65
67
|
export type QuicStreamCapacityChangedArgs = QuicStreamCapacityChangedArgs$instance;
|
|
66
68
|
|
|
67
69
|
export interface QuicClientConnectionOptions$instance extends QuicConnectionOptions {
|
|
70
|
+
readonly __tsonic_type_System_Net_Quic_QuicClientConnectionOptions: never;
|
|
71
|
+
|
|
68
72
|
ClientAuthenticationOptions: SslClientAuthenticationOptions;
|
|
69
73
|
get LocalEndPoint(): IPEndPoint | undefined;
|
|
70
74
|
set LocalEndPoint(value: IPEndPoint | undefined);
|
|
@@ -79,7 +83,9 @@ export const QuicClientConnectionOptions: {
|
|
|
79
83
|
|
|
80
84
|
export type QuicClientConnectionOptions = QuicClientConnectionOptions$instance;
|
|
81
85
|
|
|
82
|
-
export interface QuicConnection$instance {
|
|
86
|
+
export interface QuicConnection$instance extends System_Internal.IAsyncDisposable$instance {
|
|
87
|
+
readonly __tsonic_type_System_Net_Quic_QuicConnection: never;
|
|
88
|
+
|
|
83
89
|
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
84
90
|
|
|
85
91
|
readonly LocalEndPoint: IPEndPoint;
|
|
@@ -107,12 +113,12 @@ export interface __QuicConnection$views {
|
|
|
107
113
|
As_IAsyncDisposable(): System_Internal.IAsyncDisposable$instance;
|
|
108
114
|
}
|
|
109
115
|
|
|
110
|
-
export interface QuicConnection$instance extends System_Internal.IAsyncDisposable$instance {}
|
|
111
|
-
|
|
112
116
|
export type QuicConnection = QuicConnection$instance & __QuicConnection$views;
|
|
113
117
|
|
|
114
118
|
|
|
115
119
|
export interface QuicConnectionOptions$instance {
|
|
120
|
+
readonly __tsonic_type_System_Net_Quic_QuicConnectionOptions: never;
|
|
121
|
+
|
|
116
122
|
DefaultCloseErrorCode: long;
|
|
117
123
|
DefaultStreamErrorCode: long;
|
|
118
124
|
HandshakeTimeout: TimeSpan;
|
|
@@ -133,6 +139,8 @@ export const QuicConnectionOptions: {
|
|
|
133
139
|
export type QuicConnectionOptions = QuicConnectionOptions$instance;
|
|
134
140
|
|
|
135
141
|
export interface QuicException$instance extends IOException {
|
|
142
|
+
readonly __tsonic_type_System_Net_Quic_QuicException: never;
|
|
143
|
+
|
|
136
144
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
137
145
|
|
|
138
146
|
readonly ApplicationErrorCode: Nullable_1<System_Internal.Int64>;
|
|
@@ -154,7 +162,9 @@ export interface __QuicException$views {
|
|
|
154
162
|
export type QuicException = QuicException$instance & __QuicException$views;
|
|
155
163
|
|
|
156
164
|
|
|
157
|
-
export interface QuicListener$instance {
|
|
165
|
+
export interface QuicListener$instance extends System_Internal.IAsyncDisposable$instance {
|
|
166
|
+
readonly __tsonic_type_System_Net_Quic_QuicListener: never;
|
|
167
|
+
|
|
158
168
|
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
159
169
|
|
|
160
170
|
readonly LocalEndPoint: IPEndPoint;
|
|
@@ -174,12 +184,12 @@ export interface __QuicListener$views {
|
|
|
174
184
|
As_IAsyncDisposable(): System_Internal.IAsyncDisposable$instance;
|
|
175
185
|
}
|
|
176
186
|
|
|
177
|
-
export interface QuicListener$instance extends System_Internal.IAsyncDisposable$instance {}
|
|
178
|
-
|
|
179
187
|
export type QuicListener = QuicListener$instance & __QuicListener$views;
|
|
180
188
|
|
|
181
189
|
|
|
182
190
|
export interface QuicListenerOptions$instance {
|
|
191
|
+
readonly __tsonic_type_System_Net_Quic_QuicListenerOptions: never;
|
|
192
|
+
|
|
183
193
|
ApplicationProtocols: List_1<SslApplicationProtocol>;
|
|
184
194
|
ConnectionOptionsCallback: Func_4<QuicConnection, SslClientHelloInfo, CancellationToken, ValueTask_1<QuicServerConnectionOptions>>;
|
|
185
195
|
ListenBacklog: int;
|
|
@@ -195,6 +205,8 @@ export const QuicListenerOptions: {
|
|
|
195
205
|
export type QuicListenerOptions = QuicListenerOptions$instance;
|
|
196
206
|
|
|
197
207
|
export interface QuicReceiveWindowSizes$instance {
|
|
208
|
+
readonly __tsonic_type_System_Net_Quic_QuicReceiveWindowSizes: never;
|
|
209
|
+
|
|
198
210
|
Connection: int;
|
|
199
211
|
LocallyInitiatedBidirectionalStream: int;
|
|
200
212
|
RemotelyInitiatedBidirectionalStream: int;
|
|
@@ -210,6 +222,8 @@ export const QuicReceiveWindowSizes: {
|
|
|
210
222
|
export type QuicReceiveWindowSizes = QuicReceiveWindowSizes$instance;
|
|
211
223
|
|
|
212
224
|
export interface QuicServerConnectionOptions$instance extends QuicConnectionOptions {
|
|
225
|
+
readonly __tsonic_type_System_Net_Quic_QuicServerConnectionOptions: never;
|
|
226
|
+
|
|
213
227
|
ServerAuthenticationOptions: SslServerAuthenticationOptions;
|
|
214
228
|
}
|
|
215
229
|
|
|
@@ -222,6 +236,8 @@ export const QuicServerConnectionOptions: {
|
|
|
222
236
|
export type QuicServerConnectionOptions = QuicServerConnectionOptions$instance;
|
|
223
237
|
|
|
224
238
|
export interface QuicStream$instance extends Stream {
|
|
239
|
+
readonly __tsonic_type_System_Net_Quic_QuicStream: never;
|
|
240
|
+
|
|
225
241
|
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
226
242
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
227
243
|
|
|
@@ -430,6 +430,8 @@ 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
|
+
|
|
433
435
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
434
436
|
|
|
435
437
|
readonly Protocol: ReadOnlyMemory_1<System_Internal.Byte>;
|
|
@@ -460,6 +462,8 @@ export type SslApplicationProtocol = SslApplicationProtocol$instance & __SslAppl
|
|
|
460
462
|
|
|
461
463
|
|
|
462
464
|
export interface SslClientHelloInfo$instance {
|
|
465
|
+
readonly __tsonic_type_System_Net_Security_SslClientHelloInfo: never;
|
|
466
|
+
|
|
463
467
|
readonly ServerName: string;
|
|
464
468
|
readonly SslProtocols: SslProtocols;
|
|
465
469
|
}
|
|
@@ -473,6 +477,8 @@ export const SslClientHelloInfo: {
|
|
|
473
477
|
export type SslClientHelloInfo = SslClientHelloInfo$instance;
|
|
474
478
|
|
|
475
479
|
export interface AuthenticatedStream$instance extends Stream {
|
|
480
|
+
readonly __tsonic_type_System_Net_Security_AuthenticatedStream: never;
|
|
481
|
+
|
|
476
482
|
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
477
483
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
478
484
|
|
|
@@ -501,6 +507,8 @@ export type AuthenticatedStream = AuthenticatedStream$instance & __Authenticated
|
|
|
501
507
|
|
|
502
508
|
|
|
503
509
|
export interface CipherSuitesPolicy$instance {
|
|
510
|
+
readonly __tsonic_type_System_Net_Security_CipherSuitesPolicy: never;
|
|
511
|
+
|
|
504
512
|
readonly AllowedCipherSuites: IEnumerable_1<TlsCipherSuite>;
|
|
505
513
|
}
|
|
506
514
|
|
|
@@ -512,7 +520,9 @@ export const CipherSuitesPolicy: {
|
|
|
512
520
|
|
|
513
521
|
export type CipherSuitesPolicy = CipherSuitesPolicy$instance;
|
|
514
522
|
|
|
515
|
-
export interface NegotiateAuthentication$instance {
|
|
523
|
+
export interface NegotiateAuthentication$instance extends System_Internal.IDisposable$instance {
|
|
524
|
+
readonly __tsonic_type_System_Net_Security_NegotiateAuthentication: never;
|
|
525
|
+
|
|
516
526
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
517
527
|
|
|
518
528
|
readonly ImpersonationLevel: TokenImpersonationLevel;
|
|
@@ -546,12 +556,12 @@ export interface __NegotiateAuthentication$views {
|
|
|
546
556
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
547
557
|
}
|
|
548
558
|
|
|
549
|
-
export interface NegotiateAuthentication$instance extends System_Internal.IDisposable$instance {}
|
|
550
|
-
|
|
551
559
|
export type NegotiateAuthentication = NegotiateAuthentication$instance & __NegotiateAuthentication$views;
|
|
552
560
|
|
|
553
561
|
|
|
554
562
|
export interface NegotiateAuthenticationClientOptions$instance {
|
|
563
|
+
readonly __tsonic_type_System_Net_Security_NegotiateAuthenticationClientOptions: never;
|
|
564
|
+
|
|
555
565
|
AllowedImpersonationLevel: TokenImpersonationLevel;
|
|
556
566
|
get Binding(): ChannelBinding | undefined;
|
|
557
567
|
set Binding(value: ChannelBinding | undefined);
|
|
@@ -572,6 +582,8 @@ export const NegotiateAuthenticationClientOptions: {
|
|
|
572
582
|
export type NegotiateAuthenticationClientOptions = NegotiateAuthenticationClientOptions$instance;
|
|
573
583
|
|
|
574
584
|
export interface NegotiateAuthenticationServerOptions$instance {
|
|
585
|
+
readonly __tsonic_type_System_Net_Security_NegotiateAuthenticationServerOptions: never;
|
|
586
|
+
|
|
575
587
|
get Binding(): ChannelBinding | undefined;
|
|
576
588
|
set Binding(value: ChannelBinding | undefined);
|
|
577
589
|
Credential: NetworkCredential;
|
|
@@ -591,6 +603,8 @@ export const NegotiateAuthenticationServerOptions: {
|
|
|
591
603
|
export type NegotiateAuthenticationServerOptions = NegotiateAuthenticationServerOptions$instance;
|
|
592
604
|
|
|
593
605
|
export interface NegotiateStream$instance extends AuthenticatedStream$instance {
|
|
606
|
+
readonly __tsonic_type_System_Net_Security_NegotiateStream: never;
|
|
607
|
+
|
|
594
608
|
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
595
609
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
596
610
|
|
|
@@ -681,6 +695,8 @@ export type NegotiateStream = NegotiateStream$instance & __NegotiateStream$views
|
|
|
681
695
|
|
|
682
696
|
|
|
683
697
|
export interface SslCertificateTrust$instance {
|
|
698
|
+
readonly __tsonic_type_System_Net_Security_SslCertificateTrust: never;
|
|
699
|
+
|
|
684
700
|
}
|
|
685
701
|
|
|
686
702
|
|
|
@@ -693,6 +709,8 @@ export const SslCertificateTrust: {
|
|
|
693
709
|
export type SslCertificateTrust = SslCertificateTrust$instance;
|
|
694
710
|
|
|
695
711
|
export interface SslClientAuthenticationOptions$instance {
|
|
712
|
+
readonly __tsonic_type_System_Net_Security_SslClientAuthenticationOptions: never;
|
|
713
|
+
|
|
696
714
|
AllowRenegotiation: boolean;
|
|
697
715
|
AllowRsaPkcs1Padding: boolean;
|
|
698
716
|
AllowRsaPssPadding: boolean;
|
|
@@ -727,6 +745,8 @@ export const SslClientAuthenticationOptions: {
|
|
|
727
745
|
export type SslClientAuthenticationOptions = SslClientAuthenticationOptions$instance;
|
|
728
746
|
|
|
729
747
|
export interface SslServerAuthenticationOptions$instance {
|
|
748
|
+
readonly __tsonic_type_System_Net_Security_SslServerAuthenticationOptions: never;
|
|
749
|
+
|
|
730
750
|
AllowRenegotiation: boolean;
|
|
731
751
|
AllowRsaPkcs1Padding: boolean;
|
|
732
752
|
AllowRsaPssPadding: boolean;
|
|
@@ -760,6 +780,8 @@ export const SslServerAuthenticationOptions: {
|
|
|
760
780
|
export type SslServerAuthenticationOptions = SslServerAuthenticationOptions$instance;
|
|
761
781
|
|
|
762
782
|
export interface SslStream$instance extends AuthenticatedStream$instance {
|
|
783
|
+
readonly __tsonic_type_System_Net_Security_SslStream: never;
|
|
784
|
+
|
|
763
785
|
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
764
786
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
765
787
|
|
|
@@ -869,6 +891,8 @@ export type SslStream = SslStream$instance & __SslStream$views;
|
|
|
869
891
|
|
|
870
892
|
|
|
871
893
|
export interface SslStreamCertificateContext$instance {
|
|
894
|
+
readonly __tsonic_type_System_Net_Security_SslStreamCertificateContext: never;
|
|
895
|
+
|
|
872
896
|
readonly IntermediateCertificates: ReadOnlyCollection_1<X509Certificate2>;
|
|
873
897
|
readonly TargetCertificate: X509Certificate2;
|
|
874
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>>;
|