@tsonic/dotnet 10.0.4 → 10.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.CSharp.RuntimeBinder/internal/index.d.ts +10 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +42 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +60 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +12 -0
- package/Microsoft.Win32/internal/index.d.ts +5 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +68 -0
- package/System/internal/index.d.ts +1438 -161
- package/System.Buffers/internal/index.d.ts +42 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +7 -0
- package/System.Collections/internal/index.d.ts +109 -27
- package/System.Collections.Concurrent/internal/index.d.ts +52 -3
- package/System.Collections.Frozen/internal/index.d.ts +37 -0
- package/System.Collections.Generic/internal/index.d.ts +422 -33
- package/System.Collections.Immutable/internal/index.d.ts +193 -2
- package/System.Collections.ObjectModel/internal/index.d.ts +98 -6
- package/System.Collections.Specialized/internal/index.d.ts +72 -10
- package/System.ComponentModel/internal/index.d.ts +392 -23
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +79 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +120 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +40 -0
- package/System.Data/internal/index.d.ts +273 -20
- package/System.Data.Common/internal/index.d.ts +146 -32
- package/System.Data.SqlTypes/internal/index.d.ts +147 -48
- package/System.Diagnostics/internal/index.d.ts +213 -13
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +28 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +37 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +30 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +56 -6
- package/System.Drawing/internal/index.d.ts +38 -0
- package/System.Dynamic/internal/index.d.ts +50 -5
- package/System.Formats.Asn1/internal/index.d.ts +19 -3
- package/System.Formats.Tar/internal/index.d.ts +26 -6
- package/System.Globalization/internal/index.d.ts +116 -20
- package/System.IO/internal/index.d.ts +141 -18
- package/System.IO.Compression/internal/index.d.ts +46 -9
- package/System.IO.Enumeration/internal/index.d.ts +13 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +18 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +13 -0
- package/System.IO.Pipelines/internal/index.d.ts +22 -2
- package/System.IO.Pipes/internal/index.d.ts +31 -0
- package/System.Linq/internal/index.d.ts +55 -7
- package/System.Linq.Expressions/internal/index.d.ts +103 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +202 -21
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +103 -0
- package/System.Net.Http.Headers/internal/index.d.ts +151 -60
- package/System.Net.Http.Json/internal/index.d.ts +4 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +88 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +89 -0
- package/System.Net.Quic/internal/index.d.ts +31 -6
- package/System.Net.Security/internal/index.d.ts +40 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +59 -6
- package/System.Net.WebSockets/internal/index.d.ts +32 -3
- package/System.Numerics/internal/index.d.ts +173 -7
- package/System.Reflection/internal/index.d.ts +202 -30
- package/System.Reflection.Emit/internal/index.d.ts +80 -9
- package/System.Reflection.Metadata/internal/index.d.ts +650 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +80 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +39 -3
- package/System.Resources/internal/index.d.ts +35 -1
- package/System.Runtime/internal/index.d.ts +18 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +330 -33
- package/System.Runtime.ConstrainedExecution/internal/index.d.ts +6 -0
- package/System.Runtime.ExceptionServices/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices/internal/index.d.ts +268 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +82 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +59 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +82 -12
- package/System.Runtime.InteropServices.ObjectiveC/internal/index.d.ts +2 -0
- package/System.Runtime.InteropServices.Swift/internal/index.d.ts +8 -0
- package/System.Runtime.Intrinsics/internal/index.d.ts +56 -12
- package/System.Runtime.Intrinsics.Arm/internal/index.d.ts +40 -0
- package/System.Runtime.Intrinsics.Wasm/internal/index.d.ts +2 -0
- package/System.Runtime.Intrinsics.X86/internal/index.d.ts +148 -0
- package/System.Runtime.Loader/internal/index.d.ts +9 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +111 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +5 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +8 -0
- package/System.Runtime.Versioning/internal/index.d.ts +28 -0
- package/System.Security/internal/index.d.ts +46 -6
- package/System.Security.AccessControl/internal/index.d.ts +116 -2
- package/System.Security.Authentication/internal/index.d.ts +8 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +16 -5
- package/System.Security.Claims/internal/index.d.ts +12 -6
- package/System.Security.Cryptography/internal/index.d.ts +568 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +114 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +7 -0
- package/System.Security.Principal/internal/index.d.ts +42 -5
- package/System.Text/internal/index.d.ts +108 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +53 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +21 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +64 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +27 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +75 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +186 -24
- package/System.Threading.Channels/internal/index.d.ts +20 -0
- package/System.Threading.Tasks/internal/index.d.ts +48 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +99 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +6 -0
- package/System.Timers/internal/index.d.ts +11 -3
- package/System.Transactions/internal/index.d.ts +76 -15
- package/System.Web/internal/index.d.ts +4 -0
- package/System.Windows.Input/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +245 -20
- package/System.Xml.Linq/internal/index.d.ts +73 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +171 -0
- package/System.Xml.Serialization/internal/index.d.ts +141 -0
- package/System.Xml.XPath/internal/index.d.ts +27 -8
- package/System.Xml.Xsl/internal/index.d.ts +27 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +112 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -66,6 +66,8 @@ export type XmlSerializationWriteCallback = (o: unknown) => void;
|
|
|
66
66
|
|
|
67
67
|
|
|
68
68
|
export interface IXmlSerializable$instance {
|
|
69
|
+
readonly __tsonic_iface_System_Xml_Serialization_IXmlSerializable: never;
|
|
70
|
+
|
|
69
71
|
GetSchema(): XmlSchema | undefined;
|
|
70
72
|
ReadXml(reader: XmlReader): void;
|
|
71
73
|
WriteXml(writer: XmlWriter): void;
|
|
@@ -75,6 +77,8 @@ export interface IXmlSerializable$instance {
|
|
|
75
77
|
export type IXmlSerializable = IXmlSerializable$instance;
|
|
76
78
|
|
|
77
79
|
export interface IXmlTextParser$instance {
|
|
80
|
+
readonly __tsonic_iface_System_Xml_Serialization_IXmlTextParser: never;
|
|
81
|
+
|
|
78
82
|
Normalized: boolean;
|
|
79
83
|
WhitespaceHandling: WhitespaceHandling;
|
|
80
84
|
}
|
|
@@ -83,6 +87,8 @@ export interface IXmlTextParser$instance {
|
|
|
83
87
|
export type IXmlTextParser = IXmlTextParser$instance;
|
|
84
88
|
|
|
85
89
|
export interface XmlDeserializationEvents$instance {
|
|
90
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlDeserializationEvents: never;
|
|
91
|
+
|
|
86
92
|
get OnUnknownAttribute(): XmlAttributeEventHandler | undefined;
|
|
87
93
|
set OnUnknownAttribute(value: XmlAttributeEventHandler | undefined);
|
|
88
94
|
get OnUnknownElement(): XmlElementEventHandler | undefined;
|
|
@@ -102,6 +108,8 @@ export const XmlDeserializationEvents: {
|
|
|
102
108
|
export type XmlDeserializationEvents = XmlDeserializationEvents$instance;
|
|
103
109
|
|
|
104
110
|
export interface CodeIdentifier$instance {
|
|
111
|
+
readonly __tsonic_type_System_Xml_Serialization_CodeIdentifier: never;
|
|
112
|
+
|
|
105
113
|
}
|
|
106
114
|
|
|
107
115
|
|
|
@@ -116,6 +124,8 @@ export const CodeIdentifier: {
|
|
|
116
124
|
export type CodeIdentifier = CodeIdentifier$instance;
|
|
117
125
|
|
|
118
126
|
export interface CodeIdentifiers$instance {
|
|
127
|
+
readonly __tsonic_type_System_Xml_Serialization_CodeIdentifiers: never;
|
|
128
|
+
|
|
119
129
|
UseCamelCasing: boolean;
|
|
120
130
|
Add(identifier: string, value: unknown): void;
|
|
121
131
|
AddReserved(identifier: string): void;
|
|
@@ -139,6 +149,8 @@ export const CodeIdentifiers: {
|
|
|
139
149
|
export type CodeIdentifiers = CodeIdentifiers$instance;
|
|
140
150
|
|
|
141
151
|
export interface ImportContext$instance {
|
|
152
|
+
readonly __tsonic_type_System_Xml_Serialization_ImportContext: never;
|
|
153
|
+
|
|
142
154
|
readonly ShareTypes: boolean;
|
|
143
155
|
readonly TypeIdentifiers: CodeIdentifiers;
|
|
144
156
|
readonly Warnings: StringCollection;
|
|
@@ -153,6 +165,8 @@ export const ImportContext: {
|
|
|
153
165
|
export type ImportContext = ImportContext$instance;
|
|
154
166
|
|
|
155
167
|
export interface SchemaImporter$instance {
|
|
168
|
+
readonly __tsonic_type_System_Xml_Serialization_SchemaImporter: never;
|
|
169
|
+
|
|
156
170
|
}
|
|
157
171
|
|
|
158
172
|
|
|
@@ -163,6 +177,8 @@ export const SchemaImporter: {
|
|
|
163
177
|
export type SchemaImporter = SchemaImporter$instance;
|
|
164
178
|
|
|
165
179
|
export interface SoapAttributeAttribute$instance extends Attribute {
|
|
180
|
+
readonly __tsonic_type_System_Xml_Serialization_SoapAttributeAttribute: never;
|
|
181
|
+
|
|
166
182
|
AttributeName: string;
|
|
167
183
|
DataType: string;
|
|
168
184
|
get Namespace(): string | undefined;
|
|
@@ -179,6 +195,8 @@ export const SoapAttributeAttribute: {
|
|
|
179
195
|
export type SoapAttributeAttribute = SoapAttributeAttribute$instance;
|
|
180
196
|
|
|
181
197
|
export interface SoapAttributeOverrides$instance {
|
|
198
|
+
readonly __tsonic_type_System_Xml_Serialization_SoapAttributeOverrides: never;
|
|
199
|
+
|
|
182
200
|
Add(type: Type, attributes: SoapAttributes): void;
|
|
183
201
|
Add(type: Type, member: string, attributes: SoapAttributes): void;
|
|
184
202
|
get_Item(type: Type): SoapAttributes | undefined;
|
|
@@ -194,6 +212,8 @@ export const SoapAttributeOverrides: {
|
|
|
194
212
|
export type SoapAttributeOverrides = SoapAttributeOverrides$instance;
|
|
195
213
|
|
|
196
214
|
export interface SoapAttributes$instance {
|
|
215
|
+
readonly __tsonic_type_System_Xml_Serialization_SoapAttributes: never;
|
|
216
|
+
|
|
197
217
|
get SoapAttribute(): SoapAttributeAttribute | undefined;
|
|
198
218
|
set SoapAttribute(value: SoapAttributeAttribute | undefined);
|
|
199
219
|
get SoapDefaultValue(): unknown | undefined;
|
|
@@ -217,6 +237,8 @@ export const SoapAttributes: {
|
|
|
217
237
|
export type SoapAttributes = SoapAttributes$instance;
|
|
218
238
|
|
|
219
239
|
export interface SoapElementAttribute$instance extends Attribute {
|
|
240
|
+
readonly __tsonic_type_System_Xml_Serialization_SoapElementAttribute: never;
|
|
241
|
+
|
|
220
242
|
DataType: string;
|
|
221
243
|
ElementName: string;
|
|
222
244
|
IsNullable: boolean;
|
|
@@ -232,6 +254,8 @@ export const SoapElementAttribute: {
|
|
|
232
254
|
export type SoapElementAttribute = SoapElementAttribute$instance;
|
|
233
255
|
|
|
234
256
|
export interface SoapEnumAttribute$instance extends Attribute {
|
|
257
|
+
readonly __tsonic_type_System_Xml_Serialization_SoapEnumAttribute: never;
|
|
258
|
+
|
|
235
259
|
Name: string;
|
|
236
260
|
}
|
|
237
261
|
|
|
@@ -245,6 +269,8 @@ export const SoapEnumAttribute: {
|
|
|
245
269
|
export type SoapEnumAttribute = SoapEnumAttribute$instance;
|
|
246
270
|
|
|
247
271
|
export interface SoapIgnoreAttribute$instance extends Attribute {
|
|
272
|
+
readonly __tsonic_type_System_Xml_Serialization_SoapIgnoreAttribute: never;
|
|
273
|
+
|
|
248
274
|
}
|
|
249
275
|
|
|
250
276
|
|
|
@@ -256,6 +282,8 @@ export const SoapIgnoreAttribute: {
|
|
|
256
282
|
export type SoapIgnoreAttribute = SoapIgnoreAttribute$instance;
|
|
257
283
|
|
|
258
284
|
export interface SoapIncludeAttribute$instance extends Attribute {
|
|
285
|
+
readonly __tsonic_type_System_Xml_Serialization_SoapIncludeAttribute: never;
|
|
286
|
+
|
|
259
287
|
Type: Type;
|
|
260
288
|
}
|
|
261
289
|
|
|
@@ -268,6 +296,8 @@ export const SoapIncludeAttribute: {
|
|
|
268
296
|
export type SoapIncludeAttribute = SoapIncludeAttribute$instance;
|
|
269
297
|
|
|
270
298
|
export interface SoapReflectionImporter$instance {
|
|
299
|
+
readonly __tsonic_type_System_Xml_Serialization_SoapReflectionImporter: never;
|
|
300
|
+
|
|
271
301
|
ImportMembersMapping(elementName: string, ns: string, members: XmlReflectionMember[]): XmlMembersMapping;
|
|
272
302
|
ImportMembersMapping(elementName: string, ns: string, members: XmlReflectionMember[], hasWrapperElement: boolean, writeAccessors: boolean): XmlMembersMapping;
|
|
273
303
|
ImportMembersMapping(elementName: string, ns: string, members: XmlReflectionMember[], hasWrapperElement: boolean, writeAccessors: boolean, validate: boolean): XmlMembersMapping;
|
|
@@ -290,6 +320,8 @@ export const SoapReflectionImporter: {
|
|
|
290
320
|
export type SoapReflectionImporter = SoapReflectionImporter$instance;
|
|
291
321
|
|
|
292
322
|
export interface SoapSchemaMember$instance {
|
|
323
|
+
readonly __tsonic_type_System_Xml_Serialization_SoapSchemaMember: never;
|
|
324
|
+
|
|
293
325
|
MemberName: string;
|
|
294
326
|
get MemberType(): XmlQualifiedName | undefined;
|
|
295
327
|
set MemberType(value: XmlQualifiedName | undefined);
|
|
@@ -304,6 +336,8 @@ export const SoapSchemaMember: {
|
|
|
304
336
|
export type SoapSchemaMember = SoapSchemaMember$instance;
|
|
305
337
|
|
|
306
338
|
export interface SoapTypeAttribute$instance extends Attribute {
|
|
339
|
+
readonly __tsonic_type_System_Xml_Serialization_SoapTypeAttribute: never;
|
|
340
|
+
|
|
307
341
|
IncludeInSchema: boolean;
|
|
308
342
|
get Namespace(): string | undefined;
|
|
309
343
|
set Namespace(value: string | undefined);
|
|
@@ -321,6 +355,8 @@ export const SoapTypeAttribute: {
|
|
|
321
355
|
export type SoapTypeAttribute = SoapTypeAttribute$instance;
|
|
322
356
|
|
|
323
357
|
export interface UnreferencedObjectEventArgs$instance extends EventArgs {
|
|
358
|
+
readonly __tsonic_type_System_Xml_Serialization_UnreferencedObjectEventArgs: never;
|
|
359
|
+
|
|
324
360
|
readonly UnreferencedId: string | undefined;
|
|
325
361
|
readonly UnreferencedObject: unknown | undefined;
|
|
326
362
|
}
|
|
@@ -334,6 +370,8 @@ export const UnreferencedObjectEventArgs: {
|
|
|
334
370
|
export type UnreferencedObjectEventArgs = UnreferencedObjectEventArgs$instance;
|
|
335
371
|
|
|
336
372
|
export interface XmlAnyAttributeAttribute$instance extends Attribute {
|
|
373
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlAnyAttributeAttribute: never;
|
|
374
|
+
|
|
337
375
|
}
|
|
338
376
|
|
|
339
377
|
|
|
@@ -345,6 +383,8 @@ export const XmlAnyAttributeAttribute: {
|
|
|
345
383
|
export type XmlAnyAttributeAttribute = XmlAnyAttributeAttribute$instance;
|
|
346
384
|
|
|
347
385
|
export interface XmlAnyElementAttribute$instance extends Attribute {
|
|
386
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlAnyElementAttribute: never;
|
|
387
|
+
|
|
348
388
|
Name: string;
|
|
349
389
|
get Namespace(): string | undefined;
|
|
350
390
|
set Namespace(value: string | undefined);
|
|
@@ -362,6 +402,12 @@ export const XmlAnyElementAttribute: {
|
|
|
362
402
|
export type XmlAnyElementAttribute = XmlAnyElementAttribute$instance;
|
|
363
403
|
|
|
364
404
|
export interface XmlAnyElementAttributes$instance extends CollectionBase {
|
|
405
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlAnyElementAttributes: never;
|
|
406
|
+
|
|
407
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
408
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
409
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
410
|
+
|
|
365
411
|
[index: number]: XmlAnyElementAttribute;
|
|
366
412
|
Add(value: unknown): int;
|
|
367
413
|
Clear(): void;
|
|
@@ -390,6 +436,8 @@ export type XmlAnyElementAttributes = XmlAnyElementAttributes$instance & __XmlAn
|
|
|
390
436
|
|
|
391
437
|
|
|
392
438
|
export interface XmlArrayAttribute$instance extends Attribute {
|
|
439
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlArrayAttribute: never;
|
|
440
|
+
|
|
393
441
|
ElementName: string;
|
|
394
442
|
Form: XmlSchemaForm;
|
|
395
443
|
IsNullable: boolean;
|
|
@@ -408,6 +456,8 @@ export const XmlArrayAttribute: {
|
|
|
408
456
|
export type XmlArrayAttribute = XmlArrayAttribute$instance;
|
|
409
457
|
|
|
410
458
|
export interface XmlArrayItemAttribute$instance extends Attribute {
|
|
459
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlArrayItemAttribute: never;
|
|
460
|
+
|
|
411
461
|
DataType: string;
|
|
412
462
|
ElementName: string;
|
|
413
463
|
Form: XmlSchemaForm;
|
|
@@ -431,6 +481,12 @@ export const XmlArrayItemAttribute: {
|
|
|
431
481
|
export type XmlArrayItemAttribute = XmlArrayItemAttribute$instance;
|
|
432
482
|
|
|
433
483
|
export interface XmlArrayItemAttributes$instance extends CollectionBase {
|
|
484
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlArrayItemAttributes: never;
|
|
485
|
+
|
|
486
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
487
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
488
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
489
|
+
|
|
434
490
|
[index: number]: XmlArrayItemAttribute;
|
|
435
491
|
Add(value: unknown): int;
|
|
436
492
|
Clear(): void;
|
|
@@ -459,6 +515,8 @@ export type XmlArrayItemAttributes = XmlArrayItemAttributes$instance & __XmlArra
|
|
|
459
515
|
|
|
460
516
|
|
|
461
517
|
export interface XmlAttributeAttribute$instance extends Attribute {
|
|
518
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlAttributeAttribute: never;
|
|
519
|
+
|
|
462
520
|
AttributeName: string;
|
|
463
521
|
DataType: string;
|
|
464
522
|
Form: XmlSchemaForm;
|
|
@@ -480,6 +538,8 @@ export const XmlAttributeAttribute: {
|
|
|
480
538
|
export type XmlAttributeAttribute = XmlAttributeAttribute$instance;
|
|
481
539
|
|
|
482
540
|
export interface XmlAttributeEventArgs$instance extends EventArgs {
|
|
541
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlAttributeEventArgs: never;
|
|
542
|
+
|
|
483
543
|
readonly Attr: XmlAttribute;
|
|
484
544
|
readonly ExpectedAttributes: string;
|
|
485
545
|
readonly LineNumber: int;
|
|
@@ -495,6 +555,8 @@ export const XmlAttributeEventArgs: {
|
|
|
495
555
|
export type XmlAttributeEventArgs = XmlAttributeEventArgs$instance;
|
|
496
556
|
|
|
497
557
|
export interface XmlAttributeOverrides$instance {
|
|
558
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlAttributeOverrides: never;
|
|
559
|
+
|
|
498
560
|
Add(type: Type, attributes: XmlAttributes): void;
|
|
499
561
|
Add(type: Type, member: string, attributes: XmlAttributes): void;
|
|
500
562
|
get_Item(type: Type): XmlAttributes | undefined;
|
|
@@ -510,6 +572,8 @@ export const XmlAttributeOverrides: {
|
|
|
510
572
|
export type XmlAttributeOverrides = XmlAttributeOverrides$instance;
|
|
511
573
|
|
|
512
574
|
export interface XmlAttributes$instance {
|
|
575
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlAttributes: never;
|
|
576
|
+
|
|
513
577
|
get XmlAnyAttribute(): XmlAnyAttributeAttribute | undefined;
|
|
514
578
|
set XmlAnyAttribute(value: XmlAnyAttributeAttribute | undefined);
|
|
515
579
|
readonly XmlAnyElements: XmlAnyElementAttributes;
|
|
@@ -544,6 +608,8 @@ export const XmlAttributes: {
|
|
|
544
608
|
export type XmlAttributes = XmlAttributes$instance;
|
|
545
609
|
|
|
546
610
|
export interface XmlChoiceIdentifierAttribute$instance extends Attribute {
|
|
611
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlChoiceIdentifierAttribute: never;
|
|
612
|
+
|
|
547
613
|
MemberName: string;
|
|
548
614
|
}
|
|
549
615
|
|
|
@@ -557,6 +623,8 @@ export const XmlChoiceIdentifierAttribute: {
|
|
|
557
623
|
export type XmlChoiceIdentifierAttribute = XmlChoiceIdentifierAttribute$instance;
|
|
558
624
|
|
|
559
625
|
export interface XmlElementAttribute$instance extends Attribute {
|
|
626
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlElementAttribute: never;
|
|
627
|
+
|
|
560
628
|
DataType: string;
|
|
561
629
|
ElementName: string;
|
|
562
630
|
Form: XmlSchemaForm;
|
|
@@ -580,6 +648,12 @@ export const XmlElementAttribute: {
|
|
|
580
648
|
export type XmlElementAttribute = XmlElementAttribute$instance;
|
|
581
649
|
|
|
582
650
|
export interface XmlElementAttributes$instance extends CollectionBase {
|
|
651
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlElementAttributes: never;
|
|
652
|
+
|
|
653
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
654
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
655
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
656
|
+
|
|
583
657
|
[index: number]: XmlElementAttribute;
|
|
584
658
|
Add(value: unknown): int;
|
|
585
659
|
Clear(): void;
|
|
@@ -608,6 +682,8 @@ export type XmlElementAttributes = XmlElementAttributes$instance & __XmlElementA
|
|
|
608
682
|
|
|
609
683
|
|
|
610
684
|
export interface XmlElementEventArgs$instance extends EventArgs {
|
|
685
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlElementEventArgs: never;
|
|
686
|
+
|
|
611
687
|
readonly Element: XmlElement;
|
|
612
688
|
readonly ExpectedElements: string;
|
|
613
689
|
readonly LineNumber: int;
|
|
@@ -623,6 +699,8 @@ export const XmlElementEventArgs: {
|
|
|
623
699
|
export type XmlElementEventArgs = XmlElementEventArgs$instance;
|
|
624
700
|
|
|
625
701
|
export interface XmlEnumAttribute$instance extends Attribute {
|
|
702
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlEnumAttribute: never;
|
|
703
|
+
|
|
626
704
|
get Name(): string | undefined;
|
|
627
705
|
set Name(value: string | undefined);
|
|
628
706
|
}
|
|
@@ -637,6 +715,8 @@ export const XmlEnumAttribute: {
|
|
|
637
715
|
export type XmlEnumAttribute = XmlEnumAttribute$instance;
|
|
638
716
|
|
|
639
717
|
export interface XmlIgnoreAttribute$instance extends Attribute {
|
|
718
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlIgnoreAttribute: never;
|
|
719
|
+
|
|
640
720
|
}
|
|
641
721
|
|
|
642
722
|
|
|
@@ -648,6 +728,8 @@ export const XmlIgnoreAttribute: {
|
|
|
648
728
|
export type XmlIgnoreAttribute = XmlIgnoreAttribute$instance;
|
|
649
729
|
|
|
650
730
|
export interface XmlIncludeAttribute$instance extends Attribute {
|
|
731
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlIncludeAttribute: never;
|
|
732
|
+
|
|
651
733
|
get Type(): Type | undefined;
|
|
652
734
|
set Type(value: Type | undefined);
|
|
653
735
|
}
|
|
@@ -661,6 +743,8 @@ export const XmlIncludeAttribute: {
|
|
|
661
743
|
export type XmlIncludeAttribute = XmlIncludeAttribute$instance;
|
|
662
744
|
|
|
663
745
|
export interface XmlMapping$instance {
|
|
746
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlMapping: never;
|
|
747
|
+
|
|
664
748
|
readonly ElementName: string;
|
|
665
749
|
readonly Namespace: string | undefined;
|
|
666
750
|
readonly XsdElementName: string;
|
|
@@ -675,6 +759,8 @@ export const XmlMapping: {
|
|
|
675
759
|
export type XmlMapping = XmlMapping$instance;
|
|
676
760
|
|
|
677
761
|
export interface XmlMemberMapping$instance {
|
|
762
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlMemberMapping: never;
|
|
763
|
+
|
|
678
764
|
readonly Any: boolean;
|
|
679
765
|
readonly CheckSpecified: boolean;
|
|
680
766
|
readonly ElementName: string;
|
|
@@ -694,6 +780,8 @@ export const XmlMemberMapping: {
|
|
|
694
780
|
export type XmlMemberMapping = XmlMemberMapping$instance;
|
|
695
781
|
|
|
696
782
|
export interface XmlMembersMapping$instance extends XmlMapping {
|
|
783
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlMembersMapping: never;
|
|
784
|
+
|
|
697
785
|
readonly Count: int;
|
|
698
786
|
readonly [index: number]: XmlMemberMapping;
|
|
699
787
|
readonly TypeName: string | undefined;
|
|
@@ -708,6 +796,8 @@ export const XmlMembersMapping: {
|
|
|
708
796
|
export type XmlMembersMapping = XmlMembersMapping$instance;
|
|
709
797
|
|
|
710
798
|
export interface XmlNamespaceDeclarationsAttribute$instance extends Attribute {
|
|
799
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlNamespaceDeclarationsAttribute: never;
|
|
800
|
+
|
|
711
801
|
}
|
|
712
802
|
|
|
713
803
|
|
|
@@ -719,6 +809,8 @@ export const XmlNamespaceDeclarationsAttribute: {
|
|
|
719
809
|
export type XmlNamespaceDeclarationsAttribute = XmlNamespaceDeclarationsAttribute$instance;
|
|
720
810
|
|
|
721
811
|
export interface XmlNodeEventArgs$instance extends EventArgs {
|
|
812
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlNodeEventArgs: never;
|
|
813
|
+
|
|
722
814
|
readonly LineNumber: int;
|
|
723
815
|
readonly LinePosition: int;
|
|
724
816
|
readonly LocalName: string;
|
|
@@ -737,6 +829,8 @@ export const XmlNodeEventArgs: {
|
|
|
737
829
|
export type XmlNodeEventArgs = XmlNodeEventArgs$instance;
|
|
738
830
|
|
|
739
831
|
export interface XmlReflectionImporter$instance {
|
|
832
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlReflectionImporter: never;
|
|
833
|
+
|
|
740
834
|
ImportMembersMapping(elementName: string, ns: string, members: XmlReflectionMember[], hasWrapperElement: boolean): XmlMembersMapping;
|
|
741
835
|
ImportMembersMapping(elementName: string, ns: string, members: XmlReflectionMember[], hasWrapperElement: boolean, rpc: boolean): XmlMembersMapping;
|
|
742
836
|
ImportMembersMapping(elementName: string, ns: string, members: XmlReflectionMember[], hasWrapperElement: boolean, rpc: boolean, openModel: boolean): XmlMembersMapping;
|
|
@@ -761,6 +855,8 @@ export const XmlReflectionImporter: {
|
|
|
761
855
|
export type XmlReflectionImporter = XmlReflectionImporter$instance;
|
|
762
856
|
|
|
763
857
|
export interface XmlReflectionMember$instance {
|
|
858
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlReflectionMember: never;
|
|
859
|
+
|
|
764
860
|
IsReturnValue: boolean;
|
|
765
861
|
MemberName: string;
|
|
766
862
|
get MemberType(): Type | undefined;
|
|
@@ -779,6 +875,8 @@ export const XmlReflectionMember: {
|
|
|
779
875
|
export type XmlReflectionMember = XmlReflectionMember$instance;
|
|
780
876
|
|
|
781
877
|
export interface XmlRootAttribute$instance extends Attribute {
|
|
878
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlRootAttribute: never;
|
|
879
|
+
|
|
782
880
|
DataType: string;
|
|
783
881
|
ElementName: string;
|
|
784
882
|
IsNullable: boolean;
|
|
@@ -796,6 +894,12 @@ export const XmlRootAttribute: {
|
|
|
796
894
|
export type XmlRootAttribute = XmlRootAttribute$instance;
|
|
797
895
|
|
|
798
896
|
export interface XmlSchemaEnumerator$instance extends IDisposable {
|
|
897
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlSchemaEnumerator: never;
|
|
898
|
+
|
|
899
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
900
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
901
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
902
|
+
|
|
799
903
|
readonly Current: XmlSchema;
|
|
800
904
|
Dispose(): void;
|
|
801
905
|
MoveNext(): boolean;
|
|
@@ -817,6 +921,8 @@ export type XmlSchemaEnumerator = XmlSchemaEnumerator$instance & __XmlSchemaEnum
|
|
|
817
921
|
|
|
818
922
|
|
|
819
923
|
export interface XmlSchemaExporter$instance {
|
|
924
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlSchemaExporter: never;
|
|
925
|
+
|
|
820
926
|
ExportAnyType(ns: string): string;
|
|
821
927
|
ExportAnyType(members: XmlMembersMapping): string | undefined;
|
|
822
928
|
ExportMembersMapping(xmlMembersMapping: XmlMembersMapping): void;
|
|
@@ -834,6 +940,8 @@ export const XmlSchemaExporter: {
|
|
|
834
940
|
export type XmlSchemaExporter = XmlSchemaExporter$instance;
|
|
835
941
|
|
|
836
942
|
export interface XmlSchemaImporter$instance extends SchemaImporter {
|
|
943
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlSchemaImporter: never;
|
|
944
|
+
|
|
837
945
|
ImportAnyType(typeName: XmlQualifiedName, elementName: string): XmlMembersMapping | undefined;
|
|
838
946
|
ImportDerivedTypeMapping(name: XmlQualifiedName, baseType: Type): XmlTypeMapping;
|
|
839
947
|
ImportDerivedTypeMapping(name: XmlQualifiedName, baseType: Type, baseTypeCanBeIndirect: boolean): XmlTypeMapping;
|
|
@@ -857,6 +965,8 @@ export const XmlSchemaImporter: {
|
|
|
857
965
|
export type XmlSchemaImporter = XmlSchemaImporter$instance;
|
|
858
966
|
|
|
859
967
|
export interface XmlSchemaProviderAttribute$instance extends Attribute {
|
|
968
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlSchemaProviderAttribute: never;
|
|
969
|
+
|
|
860
970
|
IsAny: boolean;
|
|
861
971
|
readonly MethodName: string | undefined;
|
|
862
972
|
}
|
|
@@ -870,6 +980,13 @@ export const XmlSchemaProviderAttribute: {
|
|
|
870
980
|
export type XmlSchemaProviderAttribute = XmlSchemaProviderAttribute$instance;
|
|
871
981
|
|
|
872
982
|
export interface XmlSchemas$instance extends CollectionBase {
|
|
983
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlSchemas: never;
|
|
984
|
+
|
|
985
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
986
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
987
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
988
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
989
|
+
|
|
873
990
|
readonly IsCompiled: boolean;
|
|
874
991
|
Add(schemas: XmlSchemas): void;
|
|
875
992
|
Add(value: unknown): int;
|
|
@@ -913,6 +1030,8 @@ export type XmlSchemas = XmlSchemas$instance & __XmlSchemas$views;
|
|
|
913
1030
|
|
|
914
1031
|
|
|
915
1032
|
export interface XmlSerializationGeneratedCode$instance {
|
|
1033
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlSerializationGeneratedCode: never;
|
|
1034
|
+
|
|
916
1035
|
}
|
|
917
1036
|
|
|
918
1037
|
|
|
@@ -923,6 +1042,8 @@ export const XmlSerializationGeneratedCode: (abstract new() => XmlSerializationG
|
|
|
923
1042
|
export type XmlSerializationGeneratedCode = XmlSerializationGeneratedCode$instance;
|
|
924
1043
|
|
|
925
1044
|
export interface XmlSerializationReader$instance extends XmlSerializationGeneratedCode {
|
|
1045
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlSerializationReader: never;
|
|
1046
|
+
|
|
926
1047
|
InitCallbacks(): void;
|
|
927
1048
|
InitIDs(): void;
|
|
928
1049
|
}
|
|
@@ -950,6 +1071,8 @@ export const XmlSerializationReader: (abstract new() => XmlSerializationReader)
|
|
|
950
1071
|
export type XmlSerializationReader = XmlSerializationReader$instance;
|
|
951
1072
|
|
|
952
1073
|
export interface XmlSerializationWriter$instance extends XmlSerializationGeneratedCode {
|
|
1074
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlSerializationWriter: never;
|
|
1075
|
+
|
|
953
1076
|
InitCallbacks(): void;
|
|
954
1077
|
}
|
|
955
1078
|
|
|
@@ -977,6 +1100,8 @@ export const XmlSerializationWriter: (abstract new() => XmlSerializationWriter)
|
|
|
977
1100
|
export type XmlSerializationWriter = XmlSerializationWriter$instance;
|
|
978
1101
|
|
|
979
1102
|
export interface XmlSerializer$instance {
|
|
1103
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlSerializer: never;
|
|
1104
|
+
|
|
980
1105
|
CanDeserialize(xmlReader: XmlReader): boolean;
|
|
981
1106
|
CreateReader(): XmlSerializationReader;
|
|
982
1107
|
CreateWriter(): XmlSerializationWriter;
|
|
@@ -1019,6 +1144,8 @@ export const XmlSerializer: {
|
|
|
1019
1144
|
export type XmlSerializer = XmlSerializer$instance;
|
|
1020
1145
|
|
|
1021
1146
|
export interface XmlSerializerAssemblyAttribute$instance extends Attribute {
|
|
1147
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlSerializerAssemblyAttribute: never;
|
|
1148
|
+
|
|
1022
1149
|
get AssemblyName(): string | undefined;
|
|
1023
1150
|
set AssemblyName(value: string | undefined);
|
|
1024
1151
|
get CodeBase(): string | undefined;
|
|
@@ -1036,6 +1163,8 @@ export const XmlSerializerAssemblyAttribute: {
|
|
|
1036
1163
|
export type XmlSerializerAssemblyAttribute = XmlSerializerAssemblyAttribute$instance;
|
|
1037
1164
|
|
|
1038
1165
|
export interface XmlSerializerFactory$instance {
|
|
1166
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlSerializerFactory: never;
|
|
1167
|
+
|
|
1039
1168
|
CreateSerializer(type: Type, overrides: XmlAttributeOverrides, extraTypes: Type[], root: XmlRootAttribute, defaultNamespace: string): XmlSerializer;
|
|
1040
1169
|
CreateSerializer(type: Type, root: XmlRootAttribute): XmlSerializer;
|
|
1041
1170
|
CreateSerializer(type: Type, extraTypes: Type[]): XmlSerializer;
|
|
@@ -1055,6 +1184,8 @@ export const XmlSerializerFactory: {
|
|
|
1055
1184
|
export type XmlSerializerFactory = XmlSerializerFactory$instance;
|
|
1056
1185
|
|
|
1057
1186
|
export interface XmlSerializerImplementation$instance {
|
|
1187
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlSerializerImplementation: never;
|
|
1188
|
+
|
|
1058
1189
|
readonly Reader: XmlSerializationReader;
|
|
1059
1190
|
readonly ReadMethods: Hashtable;
|
|
1060
1191
|
readonly TypedSerializers: Hashtable;
|
|
@@ -1072,6 +1203,8 @@ export const XmlSerializerImplementation: (abstract new() => XmlSerializerImplem
|
|
|
1072
1203
|
export type XmlSerializerImplementation = XmlSerializerImplementation$instance;
|
|
1073
1204
|
|
|
1074
1205
|
export interface XmlSerializerNamespaces$instance {
|
|
1206
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlSerializerNamespaces: never;
|
|
1207
|
+
|
|
1075
1208
|
readonly Count: int;
|
|
1076
1209
|
Add(prefix: string, ns: string): void;
|
|
1077
1210
|
ToArray(): XmlQualifiedName[];
|
|
@@ -1088,6 +1221,8 @@ export const XmlSerializerNamespaces: {
|
|
|
1088
1221
|
export type XmlSerializerNamespaces = XmlSerializerNamespaces$instance;
|
|
1089
1222
|
|
|
1090
1223
|
export interface XmlSerializerVersionAttribute$instance extends Attribute {
|
|
1224
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlSerializerVersionAttribute: never;
|
|
1225
|
+
|
|
1091
1226
|
get Namespace(): string | undefined;
|
|
1092
1227
|
set Namespace(value: string | undefined);
|
|
1093
1228
|
get ParentAssemblyId(): string | undefined;
|
|
@@ -1108,6 +1243,8 @@ export const XmlSerializerVersionAttribute: {
|
|
|
1108
1243
|
export type XmlSerializerVersionAttribute = XmlSerializerVersionAttribute$instance;
|
|
1109
1244
|
|
|
1110
1245
|
export interface XmlTextAttribute$instance extends Attribute {
|
|
1246
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlTextAttribute: never;
|
|
1247
|
+
|
|
1111
1248
|
DataType: string;
|
|
1112
1249
|
get Type(): Type | undefined;
|
|
1113
1250
|
set Type(value: Type | undefined);
|
|
@@ -1123,6 +1260,8 @@ export const XmlTextAttribute: {
|
|
|
1123
1260
|
export type XmlTextAttribute = XmlTextAttribute$instance;
|
|
1124
1261
|
|
|
1125
1262
|
export interface XmlTypeAttribute$instance extends Attribute {
|
|
1263
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlTypeAttribute: never;
|
|
1264
|
+
|
|
1126
1265
|
AnonymousType: boolean;
|
|
1127
1266
|
IncludeInSchema: boolean;
|
|
1128
1267
|
get Namespace(): string | undefined;
|
|
@@ -1140,6 +1279,8 @@ export const XmlTypeAttribute: {
|
|
|
1140
1279
|
export type XmlTypeAttribute = XmlTypeAttribute$instance;
|
|
1141
1280
|
|
|
1142
1281
|
export interface XmlTypeMapping$instance extends XmlMapping {
|
|
1282
|
+
readonly __tsonic_type_System_Xml_Serialization_XmlTypeMapping: never;
|
|
1283
|
+
|
|
1143
1284
|
readonly TypeFullName: string;
|
|
1144
1285
|
readonly TypeName: string;
|
|
1145
1286
|
readonly XsdTypeName: string | undefined;
|
|
@@ -72,13 +72,19 @@ export enum XPathResultType {
|
|
|
72
72
|
|
|
73
73
|
|
|
74
74
|
export interface IXPathNavigable$instance {
|
|
75
|
+
readonly __tsonic_iface_System_Xml_XPath_IXPathNavigable: never;
|
|
76
|
+
|
|
75
77
|
CreateNavigator(): XPathNavigator;
|
|
76
78
|
}
|
|
77
79
|
|
|
78
80
|
|
|
79
81
|
export type IXPathNavigable = IXPathNavigable$instance;
|
|
80
82
|
|
|
81
|
-
export interface XPathDocument$instance {
|
|
83
|
+
export interface XPathDocument$instance extends IXPathNavigable$instance {
|
|
84
|
+
readonly __tsonic_type_System_Xml_XPath_XPathDocument: never;
|
|
85
|
+
|
|
86
|
+
readonly __tsonic_iface_System_Xml_XPath_IXPathNavigable: never;
|
|
87
|
+
|
|
82
88
|
CreateNavigator(): XPathNavigator;
|
|
83
89
|
}
|
|
84
90
|
|
|
@@ -97,12 +103,14 @@ export interface __XPathDocument$views {
|
|
|
97
103
|
As_IXPathNavigable(): IXPathNavigable$instance;
|
|
98
104
|
}
|
|
99
105
|
|
|
100
|
-
export interface XPathDocument$instance extends IXPathNavigable$instance {}
|
|
101
|
-
|
|
102
106
|
export type XPathDocument = XPathDocument$instance & __XPathDocument$views;
|
|
103
107
|
|
|
104
108
|
|
|
105
109
|
export interface XPathException$instance extends SystemException {
|
|
110
|
+
readonly __tsonic_type_System_Xml_XPath_XPathException: never;
|
|
111
|
+
|
|
112
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
113
|
+
|
|
106
114
|
readonly Message: string;
|
|
107
115
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
108
116
|
}
|
|
@@ -123,6 +131,8 @@ export type XPathException = XPathException$instance & __XPathException$views;
|
|
|
123
131
|
|
|
124
132
|
|
|
125
133
|
export interface XPathExpression$instance {
|
|
134
|
+
readonly __tsonic_type_System_Xml_XPath_XPathExpression: never;
|
|
135
|
+
|
|
126
136
|
readonly Expression: string;
|
|
127
137
|
readonly ReturnType: XPathResultType;
|
|
128
138
|
AddSort(expr: unknown, comparer: IComparer): void;
|
|
@@ -142,6 +152,8 @@ export const XPathExpression: {
|
|
|
142
152
|
export type XPathExpression = XPathExpression$instance;
|
|
143
153
|
|
|
144
154
|
export interface XPathItem$instance {
|
|
155
|
+
readonly __tsonic_type_System_Xml_XPath_XPathItem: never;
|
|
156
|
+
|
|
145
157
|
readonly IsNode: boolean;
|
|
146
158
|
readonly TypedValue: unknown;
|
|
147
159
|
readonly Value: string;
|
|
@@ -163,7 +175,13 @@ export const XPathItem: (abstract new() => XPathItem) & {
|
|
|
163
175
|
|
|
164
176
|
export type XPathItem = XPathItem$instance;
|
|
165
177
|
|
|
166
|
-
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
|
+
|
|
181
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
182
|
+
readonly __tsonic_iface_System_Xml_IXmlNamespaceResolver: never;
|
|
183
|
+
readonly __tsonic_iface_System_Xml_XPath_IXPathNavigable: never;
|
|
184
|
+
|
|
167
185
|
readonly BaseURI: string;
|
|
168
186
|
readonly CanEdit: boolean;
|
|
169
187
|
readonly HasAttributes: boolean;
|
|
@@ -292,12 +310,15 @@ export interface __XPathNavigator$views {
|
|
|
292
310
|
As_IXPathNavigable(): IXPathNavigable$instance;
|
|
293
311
|
}
|
|
294
312
|
|
|
295
|
-
export interface XPathNavigator$instance extends System_Xml_Internal.IXmlNamespaceResolver$instance, IXPathNavigable$instance {}
|
|
296
|
-
|
|
297
313
|
export type XPathNavigator = XPathNavigator$instance & __XPathNavigator$views;
|
|
298
314
|
|
|
299
315
|
|
|
300
316
|
export interface XPathNodeIterator$instance {
|
|
317
|
+
readonly __tsonic_type_System_Xml_XPath_XPathNodeIterator: never;
|
|
318
|
+
|
|
319
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
320
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
321
|
+
|
|
301
322
|
readonly Count: int;
|
|
302
323
|
readonly Current: XPathNavigator | undefined;
|
|
303
324
|
readonly CurrentPosition: int;
|
|
@@ -316,8 +337,6 @@ export interface __XPathNodeIterator$views {
|
|
|
316
337
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
317
338
|
}
|
|
318
339
|
|
|
319
|
-
export interface XPathNodeIterator$instance extends System_Collections_Internal.IEnumerable$instance {}
|
|
320
|
-
|
|
321
340
|
export type XPathNodeIterator = XPathNodeIterator$instance & __XPathNodeIterator$views;
|
|
322
341
|
|
|
323
342
|
|