@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.
Files changed (126) hide show
  1. package/Microsoft.CSharp.RuntimeBinder/internal/index.d.ts +6 -0
  2. package/Microsoft.VisualBasic/internal/index.d.ts +38 -0
  3. package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +58 -0
  4. package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +8 -0
  5. package/Microsoft.Win32/internal/index.d.ts +3 -3
  6. package/Microsoft.Win32.SafeHandles/internal/index.d.ts +34 -0
  7. package/System/internal/index.d.ts +413 -159
  8. package/System.Buffers/internal/index.d.ts +24 -6
  9. package/System.CodeDom.Compiler/internal/index.d.ts +4 -0
  10. package/System.Collections/internal/index.d.ts +35 -21
  11. package/System.Collections.Concurrent/internal/index.d.ts +17 -3
  12. package/System.Collections.Frozen/internal/index.d.ts +12 -0
  13. package/System.Collections.Generic/internal/index.d.ts +121 -33
  14. package/System.Collections.Immutable/internal/index.d.ts +44 -0
  15. package/System.Collections.ObjectModel/internal/index.d.ts +20 -6
  16. package/System.Collections.Specialized/internal/index.d.ts +30 -6
  17. package/System.ComponentModel/internal/index.d.ts +269 -21
  18. package/System.ComponentModel.DataAnnotations/internal/index.d.ts +73 -3
  19. package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
  20. package/System.ComponentModel.Design/internal/index.d.ts +47 -3
  21. package/System.ComponentModel.Design.Serialization/internal/index.d.ts +22 -0
  22. package/System.Data/internal/index.d.ts +110 -18
  23. package/System.Data.Common/internal/index.d.ts +64 -30
  24. package/System.Data.SqlTypes/internal/index.d.ts +58 -48
  25. package/System.Diagnostics/internal/index.d.ts +143 -9
  26. package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
  27. package/System.Diagnostics.Contracts/internal/index.d.ts +26 -0
  28. package/System.Diagnostics.Metrics/internal/index.d.ts +31 -3
  29. package/System.Diagnostics.SymbolStore/internal/index.d.ts +8 -0
  30. package/System.Diagnostics.Tracing/internal/index.d.ts +40 -6
  31. package/System.Drawing/internal/index.d.ts +24 -0
  32. package/System.Dynamic/internal/index.d.ts +37 -5
  33. package/System.Formats.Asn1/internal/index.d.ts +13 -3
  34. package/System.Formats.Tar/internal/index.d.ts +20 -6
  35. package/System.Globalization/internal/index.d.ts +64 -18
  36. package/System.IO/internal/index.d.ts +74 -18
  37. package/System.IO.Compression/internal/index.d.ts +25 -9
  38. package/System.IO.Enumeration/internal/index.d.ts +6 -0
  39. package/System.IO.IsolatedStorage/internal/index.d.ts +9 -3
  40. package/System.IO.MemoryMappedFiles/internal/index.d.ts +6 -0
  41. package/System.IO.Pipelines/internal/index.d.ts +18 -2
  42. package/System.IO.Pipes/internal/index.d.ts +16 -0
  43. package/System.Linq/internal/index.d.ts +17 -3
  44. package/System.Linq.Expressions/internal/index.d.ts +86 -18
  45. package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
  46. package/System.Net/internal/index.d.ts +109 -19
  47. package/System.Net.Cache/internal/index.d.ts +4 -0
  48. package/System.Net.Http/internal/index.d.ts +50 -0
  49. package/System.Net.Http.Headers/internal/index.d.ts +78 -60
  50. package/System.Net.Http.Json/internal/index.d.ts +2 -0
  51. package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
  52. package/System.Net.Mail/internal/index.d.ts +31 -9
  53. package/System.Net.Mime/internal/index.d.ts +4 -0
  54. package/System.Net.NetworkInformation/internal/index.d.ts +62 -0
  55. package/System.Net.Quic/internal/index.d.ts +22 -6
  56. package/System.Net.Security/internal/index.d.ts +27 -3
  57. package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
  58. package/System.Net.Sockets/internal/index.d.ts +38 -6
  59. package/System.Net.WebSockets/internal/index.d.ts +23 -3
  60. package/System.Numerics/internal/index.d.ts +24 -6
  61. package/System.Reflection/internal/index.d.ts +134 -30
  62. package/System.Reflection.Emit/internal/index.d.ts +45 -9
  63. package/System.Reflection.Metadata/internal/index.d.ts +321 -5
  64. package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +76 -0
  65. package/System.Reflection.PortableExecutable/internal/index.d.ts +37 -3
  66. package/System.Resources/internal/index.d.ts +16 -0
  67. package/System.Runtime/internal/index.d.ts +12 -6
  68. package/System.Runtime.CompilerServices/internal/index.d.ts +275 -33
  69. package/System.Runtime.ConstrainedExecution/internal/index.d.ts +6 -0
  70. package/System.Runtime.ExceptionServices/internal/index.d.ts +6 -0
  71. package/System.Runtime.InteropServices/internal/index.d.ts +174 -14
  72. package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +40 -0
  73. package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
  74. package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +55 -3
  75. package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +57 -12
  76. package/System.Runtime.InteropServices.ObjectiveC/internal/index.d.ts +2 -0
  77. package/System.Runtime.InteropServices.Swift/internal/index.d.ts +8 -0
  78. package/System.Runtime.Intrinsics/internal/index.d.ts +12 -12
  79. package/System.Runtime.Intrinsics.Arm/internal/index.d.ts +40 -0
  80. package/System.Runtime.Intrinsics.Wasm/internal/index.d.ts +2 -0
  81. package/System.Runtime.Intrinsics.X86/internal/index.d.ts +148 -0
  82. package/System.Runtime.Loader/internal/index.d.ts +7 -3
  83. package/System.Runtime.Remoting/internal/index.d.ts +2 -0
  84. package/System.Runtime.Serialization/internal/index.d.ts +75 -9
  85. package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
  86. package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +3 -3
  87. package/System.Runtime.Serialization.Json/internal/index.d.ts +4 -0
  88. package/System.Runtime.Versioning/internal/index.d.ts +26 -0
  89. package/System.Security/internal/index.d.ts +28 -6
  90. package/System.Security.AccessControl/internal/index.d.ts +94 -0
  91. package/System.Security.Authentication/internal/index.d.ts +4 -0
  92. package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +9 -3
  93. package/System.Security.Claims/internal/index.d.ts +8 -6
  94. package/System.Security.Cryptography/internal/index.d.ts +298 -42
  95. package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +69 -9
  96. package/System.Security.Permissions/internal/index.d.ts +6 -0
  97. package/System.Security.Policy/internal/index.d.ts +4 -0
  98. package/System.Security.Principal/internal/index.d.ts +19 -5
  99. package/System.Text/internal/index.d.ts +68 -8
  100. package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
  101. package/System.Text.Json/internal/index.d.ts +32 -6
  102. package/System.Text.Json.Nodes/internal/index.d.ts +10 -0
  103. package/System.Text.Json.Schema/internal/index.d.ts +4 -0
  104. package/System.Text.Json.Serialization/internal/index.d.ts +54 -0
  105. package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +23 -3
  106. package/System.Text.RegularExpressions/internal/index.d.ts +33 -3
  107. package/System.Text.Unicode/internal/index.d.ts +4 -0
  108. package/System.Threading/internal/index.d.ts +108 -24
  109. package/System.Threading.Channels/internal/index.d.ts +18 -0
  110. package/System.Threading.Tasks/internal/index.d.ts +34 -6
  111. package/System.Threading.Tasks.Dataflow/internal/index.d.ts +32 -0
  112. package/System.Threading.Tasks.Sources/internal/index.d.ts +2 -0
  113. package/System.Timers/internal/index.d.ts +7 -3
  114. package/System.Transactions/internal/index.d.ts +37 -15
  115. package/System.Web/internal/index.d.ts +2 -0
  116. package/System.Windows.Markup/internal/index.d.ts +2 -0
  117. package/System.Xml/internal/index.d.ts +106 -18
  118. package/System.Xml.Linq/internal/index.d.ts +41 -17
  119. package/System.Xml.Resolvers/internal/index.d.ts +2 -0
  120. package/System.Xml.Schema/internal/index.d.ts +148 -0
  121. package/System.Xml.Serialization/internal/index.d.ts +116 -0
  122. package/System.Xml.XPath/internal/index.d.ts +14 -6
  123. package/System.Xml.Xsl/internal/index.d.ts +16 -0
  124. package/System.Xml.Xsl.Runtime/internal/index.d.ts +88 -0
  125. package/__internal/extensions/index.d.ts +2143 -1955
  126. package/package.json +2 -2
@@ -87,6 +87,8 @@ export interface IXmlTextParser$instance {
87
87
  export type IXmlTextParser = IXmlTextParser$instance;
88
88
 
89
89
  export interface XmlDeserializationEvents$instance {
90
+ readonly __tsonic_type_System_Xml_Serialization_XmlDeserializationEvents: never;
91
+
90
92
  get OnUnknownAttribute(): XmlAttributeEventHandler | undefined;
91
93
  set OnUnknownAttribute(value: XmlAttributeEventHandler | undefined);
92
94
  get OnUnknownElement(): XmlElementEventHandler | undefined;
@@ -106,6 +108,8 @@ export const XmlDeserializationEvents: {
106
108
  export type XmlDeserializationEvents = XmlDeserializationEvents$instance;
107
109
 
108
110
  export interface CodeIdentifier$instance {
111
+ readonly __tsonic_type_System_Xml_Serialization_CodeIdentifier: never;
112
+
109
113
  }
110
114
 
111
115
 
@@ -120,6 +124,8 @@ export const CodeIdentifier: {
120
124
  export type CodeIdentifier = CodeIdentifier$instance;
121
125
 
122
126
  export interface CodeIdentifiers$instance {
127
+ readonly __tsonic_type_System_Xml_Serialization_CodeIdentifiers: never;
128
+
123
129
  UseCamelCasing: boolean;
124
130
  Add(identifier: string, value: unknown): void;
125
131
  AddReserved(identifier: string): void;
@@ -143,6 +149,8 @@ export const CodeIdentifiers: {
143
149
  export type CodeIdentifiers = CodeIdentifiers$instance;
144
150
 
145
151
  export interface ImportContext$instance {
152
+ readonly __tsonic_type_System_Xml_Serialization_ImportContext: never;
153
+
146
154
  readonly ShareTypes: boolean;
147
155
  readonly TypeIdentifiers: CodeIdentifiers;
148
156
  readonly Warnings: StringCollection;
@@ -157,6 +165,8 @@ export const ImportContext: {
157
165
  export type ImportContext = ImportContext$instance;
158
166
 
159
167
  export interface SchemaImporter$instance {
168
+ readonly __tsonic_type_System_Xml_Serialization_SchemaImporter: never;
169
+
160
170
  }
161
171
 
162
172
 
@@ -167,6 +177,8 @@ export const SchemaImporter: {
167
177
  export type SchemaImporter = SchemaImporter$instance;
168
178
 
169
179
  export interface SoapAttributeAttribute$instance extends Attribute {
180
+ readonly __tsonic_type_System_Xml_Serialization_SoapAttributeAttribute: never;
181
+
170
182
  AttributeName: string;
171
183
  DataType: string;
172
184
  get Namespace(): string | undefined;
@@ -183,6 +195,8 @@ export const SoapAttributeAttribute: {
183
195
  export type SoapAttributeAttribute = SoapAttributeAttribute$instance;
184
196
 
185
197
  export interface SoapAttributeOverrides$instance {
198
+ readonly __tsonic_type_System_Xml_Serialization_SoapAttributeOverrides: never;
199
+
186
200
  Add(type: Type, attributes: SoapAttributes): void;
187
201
  Add(type: Type, member: string, attributes: SoapAttributes): void;
188
202
  get_Item(type: Type): SoapAttributes | undefined;
@@ -198,6 +212,8 @@ export const SoapAttributeOverrides: {
198
212
  export type SoapAttributeOverrides = SoapAttributeOverrides$instance;
199
213
 
200
214
  export interface SoapAttributes$instance {
215
+ readonly __tsonic_type_System_Xml_Serialization_SoapAttributes: never;
216
+
201
217
  get SoapAttribute(): SoapAttributeAttribute | undefined;
202
218
  set SoapAttribute(value: SoapAttributeAttribute | undefined);
203
219
  get SoapDefaultValue(): unknown | undefined;
@@ -221,6 +237,8 @@ export const SoapAttributes: {
221
237
  export type SoapAttributes = SoapAttributes$instance;
222
238
 
223
239
  export interface SoapElementAttribute$instance extends Attribute {
240
+ readonly __tsonic_type_System_Xml_Serialization_SoapElementAttribute: never;
241
+
224
242
  DataType: string;
225
243
  ElementName: string;
226
244
  IsNullable: boolean;
@@ -236,6 +254,8 @@ export const SoapElementAttribute: {
236
254
  export type SoapElementAttribute = SoapElementAttribute$instance;
237
255
 
238
256
  export interface SoapEnumAttribute$instance extends Attribute {
257
+ readonly __tsonic_type_System_Xml_Serialization_SoapEnumAttribute: never;
258
+
239
259
  Name: string;
240
260
  }
241
261
 
@@ -249,6 +269,8 @@ export const SoapEnumAttribute: {
249
269
  export type SoapEnumAttribute = SoapEnumAttribute$instance;
250
270
 
251
271
  export interface SoapIgnoreAttribute$instance extends Attribute {
272
+ readonly __tsonic_type_System_Xml_Serialization_SoapIgnoreAttribute: never;
273
+
252
274
  }
253
275
 
254
276
 
@@ -260,6 +282,8 @@ export const SoapIgnoreAttribute: {
260
282
  export type SoapIgnoreAttribute = SoapIgnoreAttribute$instance;
261
283
 
262
284
  export interface SoapIncludeAttribute$instance extends Attribute {
285
+ readonly __tsonic_type_System_Xml_Serialization_SoapIncludeAttribute: never;
286
+
263
287
  Type: Type;
264
288
  }
265
289
 
@@ -272,6 +296,8 @@ export const SoapIncludeAttribute: {
272
296
  export type SoapIncludeAttribute = SoapIncludeAttribute$instance;
273
297
 
274
298
  export interface SoapReflectionImporter$instance {
299
+ readonly __tsonic_type_System_Xml_Serialization_SoapReflectionImporter: never;
300
+
275
301
  ImportMembersMapping(elementName: string, ns: string, members: XmlReflectionMember[]): XmlMembersMapping;
276
302
  ImportMembersMapping(elementName: string, ns: string, members: XmlReflectionMember[], hasWrapperElement: boolean, writeAccessors: boolean): XmlMembersMapping;
277
303
  ImportMembersMapping(elementName: string, ns: string, members: XmlReflectionMember[], hasWrapperElement: boolean, writeAccessors: boolean, validate: boolean): XmlMembersMapping;
@@ -294,6 +320,8 @@ export const SoapReflectionImporter: {
294
320
  export type SoapReflectionImporter = SoapReflectionImporter$instance;
295
321
 
296
322
  export interface SoapSchemaMember$instance {
323
+ readonly __tsonic_type_System_Xml_Serialization_SoapSchemaMember: never;
324
+
297
325
  MemberName: string;
298
326
  get MemberType(): XmlQualifiedName | undefined;
299
327
  set MemberType(value: XmlQualifiedName | undefined);
@@ -308,6 +336,8 @@ export const SoapSchemaMember: {
308
336
  export type SoapSchemaMember = SoapSchemaMember$instance;
309
337
 
310
338
  export interface SoapTypeAttribute$instance extends Attribute {
339
+ readonly __tsonic_type_System_Xml_Serialization_SoapTypeAttribute: never;
340
+
311
341
  IncludeInSchema: boolean;
312
342
  get Namespace(): string | undefined;
313
343
  set Namespace(value: string | undefined);
@@ -325,6 +355,8 @@ export const SoapTypeAttribute: {
325
355
  export type SoapTypeAttribute = SoapTypeAttribute$instance;
326
356
 
327
357
  export interface UnreferencedObjectEventArgs$instance extends EventArgs {
358
+ readonly __tsonic_type_System_Xml_Serialization_UnreferencedObjectEventArgs: never;
359
+
328
360
  readonly UnreferencedId: string | undefined;
329
361
  readonly UnreferencedObject: unknown | undefined;
330
362
  }
@@ -338,6 +370,8 @@ export const UnreferencedObjectEventArgs: {
338
370
  export type UnreferencedObjectEventArgs = UnreferencedObjectEventArgs$instance;
339
371
 
340
372
  export interface XmlAnyAttributeAttribute$instance extends Attribute {
373
+ readonly __tsonic_type_System_Xml_Serialization_XmlAnyAttributeAttribute: never;
374
+
341
375
  }
342
376
 
343
377
 
@@ -349,6 +383,8 @@ export const XmlAnyAttributeAttribute: {
349
383
  export type XmlAnyAttributeAttribute = XmlAnyAttributeAttribute$instance;
350
384
 
351
385
  export interface XmlAnyElementAttribute$instance extends Attribute {
386
+ readonly __tsonic_type_System_Xml_Serialization_XmlAnyElementAttribute: never;
387
+
352
388
  Name: string;
353
389
  get Namespace(): string | undefined;
354
390
  set Namespace(value: string | undefined);
@@ -366,6 +402,8 @@ export const XmlAnyElementAttribute: {
366
402
  export type XmlAnyElementAttribute = XmlAnyElementAttribute$instance;
367
403
 
368
404
  export interface XmlAnyElementAttributes$instance extends CollectionBase {
405
+ readonly __tsonic_type_System_Xml_Serialization_XmlAnyElementAttributes: never;
406
+
369
407
  readonly __tsonic_iface_System_Collections_ICollection: never;
370
408
  readonly __tsonic_iface_System_Collections_IEnumerable: never;
371
409
  readonly __tsonic_iface_System_Collections_IList: never;
@@ -398,6 +436,8 @@ export type XmlAnyElementAttributes = XmlAnyElementAttributes$instance & __XmlAn
398
436
 
399
437
 
400
438
  export interface XmlArrayAttribute$instance extends Attribute {
439
+ readonly __tsonic_type_System_Xml_Serialization_XmlArrayAttribute: never;
440
+
401
441
  ElementName: string;
402
442
  Form: XmlSchemaForm;
403
443
  IsNullable: boolean;
@@ -416,6 +456,8 @@ export const XmlArrayAttribute: {
416
456
  export type XmlArrayAttribute = XmlArrayAttribute$instance;
417
457
 
418
458
  export interface XmlArrayItemAttribute$instance extends Attribute {
459
+ readonly __tsonic_type_System_Xml_Serialization_XmlArrayItemAttribute: never;
460
+
419
461
  DataType: string;
420
462
  ElementName: string;
421
463
  Form: XmlSchemaForm;
@@ -439,6 +481,8 @@ export const XmlArrayItemAttribute: {
439
481
  export type XmlArrayItemAttribute = XmlArrayItemAttribute$instance;
440
482
 
441
483
  export interface XmlArrayItemAttributes$instance extends CollectionBase {
484
+ readonly __tsonic_type_System_Xml_Serialization_XmlArrayItemAttributes: never;
485
+
442
486
  readonly __tsonic_iface_System_Collections_ICollection: never;
443
487
  readonly __tsonic_iface_System_Collections_IEnumerable: never;
444
488
  readonly __tsonic_iface_System_Collections_IList: never;
@@ -471,6 +515,8 @@ export type XmlArrayItemAttributes = XmlArrayItemAttributes$instance & __XmlArra
471
515
 
472
516
 
473
517
  export interface XmlAttributeAttribute$instance extends Attribute {
518
+ readonly __tsonic_type_System_Xml_Serialization_XmlAttributeAttribute: never;
519
+
474
520
  AttributeName: string;
475
521
  DataType: string;
476
522
  Form: XmlSchemaForm;
@@ -492,6 +538,8 @@ export const XmlAttributeAttribute: {
492
538
  export type XmlAttributeAttribute = XmlAttributeAttribute$instance;
493
539
 
494
540
  export interface XmlAttributeEventArgs$instance extends EventArgs {
541
+ readonly __tsonic_type_System_Xml_Serialization_XmlAttributeEventArgs: never;
542
+
495
543
  readonly Attr: XmlAttribute;
496
544
  readonly ExpectedAttributes: string;
497
545
  readonly LineNumber: int;
@@ -507,6 +555,8 @@ export const XmlAttributeEventArgs: {
507
555
  export type XmlAttributeEventArgs = XmlAttributeEventArgs$instance;
508
556
 
509
557
  export interface XmlAttributeOverrides$instance {
558
+ readonly __tsonic_type_System_Xml_Serialization_XmlAttributeOverrides: never;
559
+
510
560
  Add(type: Type, attributes: XmlAttributes): void;
511
561
  Add(type: Type, member: string, attributes: XmlAttributes): void;
512
562
  get_Item(type: Type): XmlAttributes | undefined;
@@ -522,6 +572,8 @@ export const XmlAttributeOverrides: {
522
572
  export type XmlAttributeOverrides = XmlAttributeOverrides$instance;
523
573
 
524
574
  export interface XmlAttributes$instance {
575
+ readonly __tsonic_type_System_Xml_Serialization_XmlAttributes: never;
576
+
525
577
  get XmlAnyAttribute(): XmlAnyAttributeAttribute | undefined;
526
578
  set XmlAnyAttribute(value: XmlAnyAttributeAttribute | undefined);
527
579
  readonly XmlAnyElements: XmlAnyElementAttributes;
@@ -556,6 +608,8 @@ export const XmlAttributes: {
556
608
  export type XmlAttributes = XmlAttributes$instance;
557
609
 
558
610
  export interface XmlChoiceIdentifierAttribute$instance extends Attribute {
611
+ readonly __tsonic_type_System_Xml_Serialization_XmlChoiceIdentifierAttribute: never;
612
+
559
613
  MemberName: string;
560
614
  }
561
615
 
@@ -569,6 +623,8 @@ export const XmlChoiceIdentifierAttribute: {
569
623
  export type XmlChoiceIdentifierAttribute = XmlChoiceIdentifierAttribute$instance;
570
624
 
571
625
  export interface XmlElementAttribute$instance extends Attribute {
626
+ readonly __tsonic_type_System_Xml_Serialization_XmlElementAttribute: never;
627
+
572
628
  DataType: string;
573
629
  ElementName: string;
574
630
  Form: XmlSchemaForm;
@@ -592,6 +648,8 @@ export const XmlElementAttribute: {
592
648
  export type XmlElementAttribute = XmlElementAttribute$instance;
593
649
 
594
650
  export interface XmlElementAttributes$instance extends CollectionBase {
651
+ readonly __tsonic_type_System_Xml_Serialization_XmlElementAttributes: never;
652
+
595
653
  readonly __tsonic_iface_System_Collections_ICollection: never;
596
654
  readonly __tsonic_iface_System_Collections_IEnumerable: never;
597
655
  readonly __tsonic_iface_System_Collections_IList: never;
@@ -624,6 +682,8 @@ export type XmlElementAttributes = XmlElementAttributes$instance & __XmlElementA
624
682
 
625
683
 
626
684
  export interface XmlElementEventArgs$instance extends EventArgs {
685
+ readonly __tsonic_type_System_Xml_Serialization_XmlElementEventArgs: never;
686
+
627
687
  readonly Element: XmlElement;
628
688
  readonly ExpectedElements: string;
629
689
  readonly LineNumber: int;
@@ -639,6 +699,8 @@ export const XmlElementEventArgs: {
639
699
  export type XmlElementEventArgs = XmlElementEventArgs$instance;
640
700
 
641
701
  export interface XmlEnumAttribute$instance extends Attribute {
702
+ readonly __tsonic_type_System_Xml_Serialization_XmlEnumAttribute: never;
703
+
642
704
  get Name(): string | undefined;
643
705
  set Name(value: string | undefined);
644
706
  }
@@ -653,6 +715,8 @@ export const XmlEnumAttribute: {
653
715
  export type XmlEnumAttribute = XmlEnumAttribute$instance;
654
716
 
655
717
  export interface XmlIgnoreAttribute$instance extends Attribute {
718
+ readonly __tsonic_type_System_Xml_Serialization_XmlIgnoreAttribute: never;
719
+
656
720
  }
657
721
 
658
722
 
@@ -664,6 +728,8 @@ export const XmlIgnoreAttribute: {
664
728
  export type XmlIgnoreAttribute = XmlIgnoreAttribute$instance;
665
729
 
666
730
  export interface XmlIncludeAttribute$instance extends Attribute {
731
+ readonly __tsonic_type_System_Xml_Serialization_XmlIncludeAttribute: never;
732
+
667
733
  get Type(): Type | undefined;
668
734
  set Type(value: Type | undefined);
669
735
  }
@@ -677,6 +743,8 @@ export const XmlIncludeAttribute: {
677
743
  export type XmlIncludeAttribute = XmlIncludeAttribute$instance;
678
744
 
679
745
  export interface XmlMapping$instance {
746
+ readonly __tsonic_type_System_Xml_Serialization_XmlMapping: never;
747
+
680
748
  readonly ElementName: string;
681
749
  readonly Namespace: string | undefined;
682
750
  readonly XsdElementName: string;
@@ -691,6 +759,8 @@ export const XmlMapping: {
691
759
  export type XmlMapping = XmlMapping$instance;
692
760
 
693
761
  export interface XmlMemberMapping$instance {
762
+ readonly __tsonic_type_System_Xml_Serialization_XmlMemberMapping: never;
763
+
694
764
  readonly Any: boolean;
695
765
  readonly CheckSpecified: boolean;
696
766
  readonly ElementName: string;
@@ -710,6 +780,8 @@ export const XmlMemberMapping: {
710
780
  export type XmlMemberMapping = XmlMemberMapping$instance;
711
781
 
712
782
  export interface XmlMembersMapping$instance extends XmlMapping {
783
+ readonly __tsonic_type_System_Xml_Serialization_XmlMembersMapping: never;
784
+
713
785
  readonly Count: int;
714
786
  readonly [index: number]: XmlMemberMapping;
715
787
  readonly TypeName: string | undefined;
@@ -724,6 +796,8 @@ export const XmlMembersMapping: {
724
796
  export type XmlMembersMapping = XmlMembersMapping$instance;
725
797
 
726
798
  export interface XmlNamespaceDeclarationsAttribute$instance extends Attribute {
799
+ readonly __tsonic_type_System_Xml_Serialization_XmlNamespaceDeclarationsAttribute: never;
800
+
727
801
  }
728
802
 
729
803
 
@@ -735,6 +809,8 @@ export const XmlNamespaceDeclarationsAttribute: {
735
809
  export type XmlNamespaceDeclarationsAttribute = XmlNamespaceDeclarationsAttribute$instance;
736
810
 
737
811
  export interface XmlNodeEventArgs$instance extends EventArgs {
812
+ readonly __tsonic_type_System_Xml_Serialization_XmlNodeEventArgs: never;
813
+
738
814
  readonly LineNumber: int;
739
815
  readonly LinePosition: int;
740
816
  readonly LocalName: string;
@@ -753,6 +829,8 @@ export const XmlNodeEventArgs: {
753
829
  export type XmlNodeEventArgs = XmlNodeEventArgs$instance;
754
830
 
755
831
  export interface XmlReflectionImporter$instance {
832
+ readonly __tsonic_type_System_Xml_Serialization_XmlReflectionImporter: never;
833
+
756
834
  ImportMembersMapping(elementName: string, ns: string, members: XmlReflectionMember[], hasWrapperElement: boolean): XmlMembersMapping;
757
835
  ImportMembersMapping(elementName: string, ns: string, members: XmlReflectionMember[], hasWrapperElement: boolean, rpc: boolean): XmlMembersMapping;
758
836
  ImportMembersMapping(elementName: string, ns: string, members: XmlReflectionMember[], hasWrapperElement: boolean, rpc: boolean, openModel: boolean): XmlMembersMapping;
@@ -777,6 +855,8 @@ export const XmlReflectionImporter: {
777
855
  export type XmlReflectionImporter = XmlReflectionImporter$instance;
778
856
 
779
857
  export interface XmlReflectionMember$instance {
858
+ readonly __tsonic_type_System_Xml_Serialization_XmlReflectionMember: never;
859
+
780
860
  IsReturnValue: boolean;
781
861
  MemberName: string;
782
862
  get MemberType(): Type | undefined;
@@ -795,6 +875,8 @@ export const XmlReflectionMember: {
795
875
  export type XmlReflectionMember = XmlReflectionMember$instance;
796
876
 
797
877
  export interface XmlRootAttribute$instance extends Attribute {
878
+ readonly __tsonic_type_System_Xml_Serialization_XmlRootAttribute: never;
879
+
798
880
  DataType: string;
799
881
  ElementName: string;
800
882
  IsNullable: boolean;
@@ -812,6 +894,8 @@ export const XmlRootAttribute: {
812
894
  export type XmlRootAttribute = XmlRootAttribute$instance;
813
895
 
814
896
  export interface XmlSchemaEnumerator$instance extends IDisposable {
897
+ readonly __tsonic_type_System_Xml_Serialization_XmlSchemaEnumerator: never;
898
+
815
899
  readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
816
900
  readonly __tsonic_iface_System_Collections_IEnumerator: never;
817
901
  readonly __tsonic_iface_System_IDisposable: never;
@@ -837,6 +921,8 @@ export type XmlSchemaEnumerator = XmlSchemaEnumerator$instance & __XmlSchemaEnum
837
921
 
838
922
 
839
923
  export interface XmlSchemaExporter$instance {
924
+ readonly __tsonic_type_System_Xml_Serialization_XmlSchemaExporter: never;
925
+
840
926
  ExportAnyType(ns: string): string;
841
927
  ExportAnyType(members: XmlMembersMapping): string | undefined;
842
928
  ExportMembersMapping(xmlMembersMapping: XmlMembersMapping): void;
@@ -854,6 +940,8 @@ export const XmlSchemaExporter: {
854
940
  export type XmlSchemaExporter = XmlSchemaExporter$instance;
855
941
 
856
942
  export interface XmlSchemaImporter$instance extends SchemaImporter {
943
+ readonly __tsonic_type_System_Xml_Serialization_XmlSchemaImporter: never;
944
+
857
945
  ImportAnyType(typeName: XmlQualifiedName, elementName: string): XmlMembersMapping | undefined;
858
946
  ImportDerivedTypeMapping(name: XmlQualifiedName, baseType: Type): XmlTypeMapping;
859
947
  ImportDerivedTypeMapping(name: XmlQualifiedName, baseType: Type, baseTypeCanBeIndirect: boolean): XmlTypeMapping;
@@ -877,6 +965,8 @@ export const XmlSchemaImporter: {
877
965
  export type XmlSchemaImporter = XmlSchemaImporter$instance;
878
966
 
879
967
  export interface XmlSchemaProviderAttribute$instance extends Attribute {
968
+ readonly __tsonic_type_System_Xml_Serialization_XmlSchemaProviderAttribute: never;
969
+
880
970
  IsAny: boolean;
881
971
  readonly MethodName: string | undefined;
882
972
  }
@@ -890,6 +980,8 @@ export const XmlSchemaProviderAttribute: {
890
980
  export type XmlSchemaProviderAttribute = XmlSchemaProviderAttribute$instance;
891
981
 
892
982
  export interface XmlSchemas$instance extends CollectionBase {
983
+ readonly __tsonic_type_System_Xml_Serialization_XmlSchemas: never;
984
+
893
985
  readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
894
986
  readonly __tsonic_iface_System_Collections_ICollection: never;
895
987
  readonly __tsonic_iface_System_Collections_IEnumerable: never;
@@ -938,6 +1030,8 @@ export type XmlSchemas = XmlSchemas$instance & __XmlSchemas$views;
938
1030
 
939
1031
 
940
1032
  export interface XmlSerializationGeneratedCode$instance {
1033
+ readonly __tsonic_type_System_Xml_Serialization_XmlSerializationGeneratedCode: never;
1034
+
941
1035
  }
942
1036
 
943
1037
 
@@ -948,6 +1042,8 @@ export const XmlSerializationGeneratedCode: (abstract new() => XmlSerializationG
948
1042
  export type XmlSerializationGeneratedCode = XmlSerializationGeneratedCode$instance;
949
1043
 
950
1044
  export interface XmlSerializationReader$instance extends XmlSerializationGeneratedCode {
1045
+ readonly __tsonic_type_System_Xml_Serialization_XmlSerializationReader: never;
1046
+
951
1047
  InitCallbacks(): void;
952
1048
  InitIDs(): void;
953
1049
  }
@@ -975,6 +1071,8 @@ export const XmlSerializationReader: (abstract new() => XmlSerializationReader)
975
1071
  export type XmlSerializationReader = XmlSerializationReader$instance;
976
1072
 
977
1073
  export interface XmlSerializationWriter$instance extends XmlSerializationGeneratedCode {
1074
+ readonly __tsonic_type_System_Xml_Serialization_XmlSerializationWriter: never;
1075
+
978
1076
  InitCallbacks(): void;
979
1077
  }
980
1078
 
@@ -1002,6 +1100,8 @@ export const XmlSerializationWriter: (abstract new() => XmlSerializationWriter)
1002
1100
  export type XmlSerializationWriter = XmlSerializationWriter$instance;
1003
1101
 
1004
1102
  export interface XmlSerializer$instance {
1103
+ readonly __tsonic_type_System_Xml_Serialization_XmlSerializer: never;
1104
+
1005
1105
  CanDeserialize(xmlReader: XmlReader): boolean;
1006
1106
  CreateReader(): XmlSerializationReader;
1007
1107
  CreateWriter(): XmlSerializationWriter;
@@ -1044,6 +1144,8 @@ export const XmlSerializer: {
1044
1144
  export type XmlSerializer = XmlSerializer$instance;
1045
1145
 
1046
1146
  export interface XmlSerializerAssemblyAttribute$instance extends Attribute {
1147
+ readonly __tsonic_type_System_Xml_Serialization_XmlSerializerAssemblyAttribute: never;
1148
+
1047
1149
  get AssemblyName(): string | undefined;
1048
1150
  set AssemblyName(value: string | undefined);
1049
1151
  get CodeBase(): string | undefined;
@@ -1061,6 +1163,8 @@ export const XmlSerializerAssemblyAttribute: {
1061
1163
  export type XmlSerializerAssemblyAttribute = XmlSerializerAssemblyAttribute$instance;
1062
1164
 
1063
1165
  export interface XmlSerializerFactory$instance {
1166
+ readonly __tsonic_type_System_Xml_Serialization_XmlSerializerFactory: never;
1167
+
1064
1168
  CreateSerializer(type: Type, overrides: XmlAttributeOverrides, extraTypes: Type[], root: XmlRootAttribute, defaultNamespace: string): XmlSerializer;
1065
1169
  CreateSerializer(type: Type, root: XmlRootAttribute): XmlSerializer;
1066
1170
  CreateSerializer(type: Type, extraTypes: Type[]): XmlSerializer;
@@ -1080,6 +1184,8 @@ export const XmlSerializerFactory: {
1080
1184
  export type XmlSerializerFactory = XmlSerializerFactory$instance;
1081
1185
 
1082
1186
  export interface XmlSerializerImplementation$instance {
1187
+ readonly __tsonic_type_System_Xml_Serialization_XmlSerializerImplementation: never;
1188
+
1083
1189
  readonly Reader: XmlSerializationReader;
1084
1190
  readonly ReadMethods: Hashtable;
1085
1191
  readonly TypedSerializers: Hashtable;
@@ -1097,6 +1203,8 @@ export const XmlSerializerImplementation: (abstract new() => XmlSerializerImplem
1097
1203
  export type XmlSerializerImplementation = XmlSerializerImplementation$instance;
1098
1204
 
1099
1205
  export interface XmlSerializerNamespaces$instance {
1206
+ readonly __tsonic_type_System_Xml_Serialization_XmlSerializerNamespaces: never;
1207
+
1100
1208
  readonly Count: int;
1101
1209
  Add(prefix: string, ns: string): void;
1102
1210
  ToArray(): XmlQualifiedName[];
@@ -1113,6 +1221,8 @@ export const XmlSerializerNamespaces: {
1113
1221
  export type XmlSerializerNamespaces = XmlSerializerNamespaces$instance;
1114
1222
 
1115
1223
  export interface XmlSerializerVersionAttribute$instance extends Attribute {
1224
+ readonly __tsonic_type_System_Xml_Serialization_XmlSerializerVersionAttribute: never;
1225
+
1116
1226
  get Namespace(): string | undefined;
1117
1227
  set Namespace(value: string | undefined);
1118
1228
  get ParentAssemblyId(): string | undefined;
@@ -1133,6 +1243,8 @@ export const XmlSerializerVersionAttribute: {
1133
1243
  export type XmlSerializerVersionAttribute = XmlSerializerVersionAttribute$instance;
1134
1244
 
1135
1245
  export interface XmlTextAttribute$instance extends Attribute {
1246
+ readonly __tsonic_type_System_Xml_Serialization_XmlTextAttribute: never;
1247
+
1136
1248
  DataType: string;
1137
1249
  get Type(): Type | undefined;
1138
1250
  set Type(value: Type | undefined);
@@ -1148,6 +1260,8 @@ export const XmlTextAttribute: {
1148
1260
  export type XmlTextAttribute = XmlTextAttribute$instance;
1149
1261
 
1150
1262
  export interface XmlTypeAttribute$instance extends Attribute {
1263
+ readonly __tsonic_type_System_Xml_Serialization_XmlTypeAttribute: never;
1264
+
1151
1265
  AnonymousType: boolean;
1152
1266
  IncludeInSchema: boolean;
1153
1267
  get Namespace(): string | undefined;
@@ -1165,6 +1279,8 @@ export const XmlTypeAttribute: {
1165
1279
  export type XmlTypeAttribute = XmlTypeAttribute$instance;
1166
1280
 
1167
1281
  export interface XmlTypeMapping$instance extends XmlMapping {
1282
+ readonly __tsonic_type_System_Xml_Serialization_XmlTypeMapping: never;
1283
+
1168
1284
  readonly TypeFullName: string;
1169
1285
  readonly TypeName: string;
1170
1286
  readonly XsdTypeName: string | undefined;
@@ -80,7 +80,9 @@ export interface IXPathNavigable$instance {
80
80
 
81
81
  export type IXPathNavigable = IXPathNavigable$instance;
82
82
 
83
- export interface XPathDocument$instance {
83
+ export interface XPathDocument$instance extends IXPathNavigable$instance {
84
+ readonly __tsonic_type_System_Xml_XPath_XPathDocument: never;
85
+
84
86
  readonly __tsonic_iface_System_Xml_XPath_IXPathNavigable: never;
85
87
 
86
88
  CreateNavigator(): XPathNavigator;
@@ -101,12 +103,12 @@ export interface __XPathDocument$views {
101
103
  As_IXPathNavigable(): IXPathNavigable$instance;
102
104
  }
103
105
 
104
- export interface XPathDocument$instance extends IXPathNavigable$instance {}
105
-
106
106
  export type XPathDocument = XPathDocument$instance & __XPathDocument$views;
107
107
 
108
108
 
109
109
  export interface XPathException$instance extends SystemException {
110
+ readonly __tsonic_type_System_Xml_XPath_XPathException: never;
111
+
110
112
  readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
111
113
 
112
114
  readonly Message: string;
@@ -129,6 +131,8 @@ export type XPathException = XPathException$instance & __XPathException$views;
129
131
 
130
132
 
131
133
  export interface XPathExpression$instance {
134
+ readonly __tsonic_type_System_Xml_XPath_XPathExpression: never;
135
+
132
136
  readonly Expression: string;
133
137
  readonly ReturnType: XPathResultType;
134
138
  AddSort(expr: unknown, comparer: IComparer): void;
@@ -148,6 +152,8 @@ export const XPathExpression: {
148
152
  export type XPathExpression = XPathExpression$instance;
149
153
 
150
154
  export interface XPathItem$instance {
155
+ readonly __tsonic_type_System_Xml_XPath_XPathItem: never;
156
+
151
157
  readonly IsNode: boolean;
152
158
  readonly TypedValue: unknown;
153
159
  readonly Value: string;
@@ -169,7 +175,9 @@ export const XPathItem: (abstract new() => XPathItem) & {
169
175
 
170
176
  export type XPathItem = XPathItem$instance;
171
177
 
172
- export interface XPathNavigator$instance extends XPathItem {
178
+ export interface XPathNavigator$instance extends XPathItem, System_Xml_Internal.IXmlNamespaceResolver$instance, IXPathNavigable$instance {
179
+ readonly __tsonic_type_System_Xml_XPath_XPathNavigator: never;
180
+
173
181
  readonly __tsonic_iface_System_ICloneable: never;
174
182
  readonly __tsonic_iface_System_Xml_IXmlNamespaceResolver: never;
175
183
  readonly __tsonic_iface_System_Xml_XPath_IXPathNavigable: never;
@@ -302,12 +310,12 @@ export interface __XPathNavigator$views {
302
310
  As_IXPathNavigable(): IXPathNavigable$instance;
303
311
  }
304
312
 
305
- export interface XPathNavigator$instance extends System_Xml_Internal.IXmlNamespaceResolver$instance, IXPathNavigable$instance {}
306
-
307
313
  export type XPathNavigator = XPathNavigator$instance & __XPathNavigator$views;
308
314
 
309
315
 
310
316
  export interface XPathNodeIterator$instance {
317
+ readonly __tsonic_type_System_Xml_XPath_XPathNodeIterator: never;
318
+
311
319
  readonly __tsonic_iface_System_Collections_IEnumerable: never;
312
320
  readonly __tsonic_iface_System_ICloneable: never;
313
321
 
@@ -48,6 +48,8 @@ export interface IXsltContextVariable$instance {
48
48
  export type IXsltContextVariable = IXsltContextVariable$instance;
49
49
 
50
50
  export interface XslCompiledTransform$instance {
51
+ readonly __tsonic_type_System_Xml_Xsl_XslCompiledTransform: never;
52
+
51
53
  get OutputSettings(): XmlWriterSettings | undefined;
52
54
  set OutputSettings(value: XmlWriterSettings | undefined);
53
55
  Load(stylesheet: XmlReader): void;
@@ -85,6 +87,8 @@ export const XslCompiledTransform: {
85
87
  export type XslCompiledTransform = XslCompiledTransform$instance;
86
88
 
87
89
  export interface XsltArgumentList$instance {
90
+ readonly __tsonic_type_System_Xml_Xsl_XsltArgumentList: never;
91
+
88
92
  AddExtensionObject(namespaceUri: string, extension: unknown): void;
89
93
  AddParam(name: string, namespaceUri: string, parameter: unknown): void;
90
94
  Clear(): void;
@@ -103,6 +107,8 @@ export const XsltArgumentList: {
103
107
  export type XsltArgumentList = XsltArgumentList$instance;
104
108
 
105
109
  export interface XsltCompileException$instance extends XsltException$instance {
110
+ readonly __tsonic_type_System_Xml_Xsl_XsltCompileException: never;
111
+
106
112
  readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
107
113
 
108
114
  GetObjectData(info: SerializationInfo, context: StreamingContext): void;
@@ -125,6 +131,8 @@ export type XsltCompileException = XsltCompileException$instance & __XsltCompile
125
131
 
126
132
 
127
133
  export interface XsltContext$instance extends XmlNamespaceManager {
134
+ readonly __tsonic_type_System_Xml_Xsl_XsltContext: never;
135
+
128
136
  readonly __tsonic_iface_System_Collections_IEnumerable: never;
129
137
  readonly __tsonic_iface_System_Xml_IXmlNamespaceResolver: never;
130
138
 
@@ -152,6 +160,8 @@ export type XsltContext = XsltContext$instance & __XsltContext$views;
152
160
 
153
161
 
154
162
  export interface XsltException$instance extends SystemException {
163
+ readonly __tsonic_type_System_Xml_Xsl_XsltException: never;
164
+
155
165
  readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
156
166
 
157
167
  readonly LineNumber: int;
@@ -177,6 +187,8 @@ export type XsltException = XsltException$instance & __XsltException$views;
177
187
 
178
188
 
179
189
  export interface XsltMessageEncounteredEventArgs$instance extends EventArgs {
190
+ readonly __tsonic_type_System_Xml_Xsl_XsltMessageEncounteredEventArgs: never;
191
+
180
192
  readonly Message: string;
181
193
  }
182
194
 
@@ -188,6 +200,8 @@ export const XsltMessageEncounteredEventArgs: (abstract new() => XsltMessageEnco
188
200
  export type XsltMessageEncounteredEventArgs = XsltMessageEncounteredEventArgs$instance;
189
201
 
190
202
  export interface XslTransform$instance {
203
+ readonly __tsonic_type_System_Xml_Xsl_XslTransform: never;
204
+
191
205
  XmlResolver: XmlResolver | undefined;
192
206
  Load(stylesheet: XmlReader): void;
193
207
  Load(stylesheet: XmlReader, resolver: XmlResolver): void;
@@ -226,6 +240,8 @@ export const XslTransform: {
226
240
  export type XslTransform = XslTransform$instance;
227
241
 
228
242
  export interface XsltSettings$instance {
243
+ readonly __tsonic_type_System_Xml_Xsl_XsltSettings: never;
244
+
229
245
  EnableDocumentFunction: boolean;
230
246
  EnableScript: boolean;
231
247
  }