@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
|
@@ -165,6 +165,8 @@ export type XmlValueGetter = () => unknown | undefined;
|
|
|
165
165
|
|
|
166
166
|
|
|
167
167
|
export interface IXmlSchemaInfo$instance {
|
|
168
|
+
readonly __tsonic_iface_System_Xml_Schema_IXmlSchemaInfo: never;
|
|
169
|
+
|
|
168
170
|
readonly Validity: XmlSchemaValidity;
|
|
169
171
|
readonly IsDefault: boolean;
|
|
170
172
|
readonly IsNil: boolean;
|
|
@@ -178,6 +180,8 @@ export interface IXmlSchemaInfo$instance {
|
|
|
178
180
|
export type IXmlSchemaInfo = IXmlSchemaInfo$instance;
|
|
179
181
|
|
|
180
182
|
export interface ValidationEventArgs$instance extends EventArgs {
|
|
183
|
+
readonly __tsonic_type_System_Xml_Schema_ValidationEventArgs: never;
|
|
184
|
+
|
|
181
185
|
readonly Exception: XmlSchemaException;
|
|
182
186
|
readonly Message: string;
|
|
183
187
|
readonly Severity: XmlSeverityType;
|
|
@@ -191,6 +195,10 @@ export const ValidationEventArgs: {
|
|
|
191
195
|
export type ValidationEventArgs = ValidationEventArgs$instance;
|
|
192
196
|
|
|
193
197
|
export interface XmlAtomicValue$instance extends XPathItem {
|
|
198
|
+
readonly __tsonic_type_System_Xml_Schema_XmlAtomicValue: never;
|
|
199
|
+
|
|
200
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
201
|
+
|
|
194
202
|
readonly IsNode: boolean;
|
|
195
203
|
readonly TypedValue: unknown;
|
|
196
204
|
readonly Value: string;
|
|
@@ -220,6 +228,8 @@ export type XmlAtomicValue = XmlAtomicValue$instance & __XmlAtomicValue$views;
|
|
|
220
228
|
|
|
221
229
|
|
|
222
230
|
export interface XmlSchema$instance extends XmlSchemaObject {
|
|
231
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchema: never;
|
|
232
|
+
|
|
223
233
|
AttributeFormDefault: XmlSchemaForm;
|
|
224
234
|
readonly AttributeGroups: XmlSchemaObjectTable;
|
|
225
235
|
readonly Attributes: XmlSchemaObjectTable;
|
|
@@ -265,6 +275,8 @@ export const XmlSchema: {
|
|
|
265
275
|
export type XmlSchema = XmlSchema$instance;
|
|
266
276
|
|
|
267
277
|
export interface XmlSchemaAll$instance extends XmlSchemaGroupBase {
|
|
278
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaAll: never;
|
|
279
|
+
|
|
268
280
|
readonly Items: XmlSchemaObjectCollection;
|
|
269
281
|
}
|
|
270
282
|
|
|
@@ -277,6 +289,8 @@ export const XmlSchemaAll: {
|
|
|
277
289
|
export type XmlSchemaAll = XmlSchemaAll$instance;
|
|
278
290
|
|
|
279
291
|
export interface XmlSchemaAnnotated$instance extends XmlSchemaObject {
|
|
292
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaAnnotated: never;
|
|
293
|
+
|
|
280
294
|
get Annotation(): XmlSchemaAnnotation | undefined;
|
|
281
295
|
set Annotation(value: XmlSchemaAnnotation | undefined);
|
|
282
296
|
get Id(): string | undefined;
|
|
@@ -294,6 +308,8 @@ export const XmlSchemaAnnotated: {
|
|
|
294
308
|
export type XmlSchemaAnnotated = XmlSchemaAnnotated$instance;
|
|
295
309
|
|
|
296
310
|
export interface XmlSchemaAnnotation$instance extends XmlSchemaObject {
|
|
311
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaAnnotation: never;
|
|
312
|
+
|
|
297
313
|
get Id(): string | undefined;
|
|
298
314
|
set Id(value: string | undefined);
|
|
299
315
|
readonly Items: XmlSchemaObjectCollection;
|
|
@@ -310,6 +326,8 @@ export const XmlSchemaAnnotation: {
|
|
|
310
326
|
export type XmlSchemaAnnotation = XmlSchemaAnnotation$instance;
|
|
311
327
|
|
|
312
328
|
export interface XmlSchemaAny$instance extends XmlSchemaParticle {
|
|
329
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaAny: never;
|
|
330
|
+
|
|
313
331
|
get Namespace(): string | undefined;
|
|
314
332
|
set Namespace(value: string | undefined);
|
|
315
333
|
ProcessContents: XmlSchemaContentProcessing;
|
|
@@ -324,6 +342,8 @@ export const XmlSchemaAny: {
|
|
|
324
342
|
export type XmlSchemaAny = XmlSchemaAny$instance;
|
|
325
343
|
|
|
326
344
|
export interface XmlSchemaAnyAttribute$instance extends XmlSchemaAnnotated {
|
|
345
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaAnyAttribute: never;
|
|
346
|
+
|
|
327
347
|
get Namespace(): string | undefined;
|
|
328
348
|
set Namespace(value: string | undefined);
|
|
329
349
|
ProcessContents: XmlSchemaContentProcessing;
|
|
@@ -338,6 +358,8 @@ export const XmlSchemaAnyAttribute: {
|
|
|
338
358
|
export type XmlSchemaAnyAttribute = XmlSchemaAnyAttribute$instance;
|
|
339
359
|
|
|
340
360
|
export interface XmlSchemaAppInfo$instance extends XmlSchemaObject {
|
|
361
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaAppInfo: never;
|
|
362
|
+
|
|
341
363
|
get Markup(): (XmlNode | undefined)[] | undefined;
|
|
342
364
|
set Markup(value: (XmlNode | undefined)[] | undefined);
|
|
343
365
|
get Source(): string | undefined;
|
|
@@ -353,6 +375,8 @@ export const XmlSchemaAppInfo: {
|
|
|
353
375
|
export type XmlSchemaAppInfo = XmlSchemaAppInfo$instance;
|
|
354
376
|
|
|
355
377
|
export interface XmlSchemaAttribute$instance extends XmlSchemaAnnotated {
|
|
378
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaAttribute: never;
|
|
379
|
+
|
|
356
380
|
readonly AttributeSchemaType: XmlSchemaSimpleType | undefined;
|
|
357
381
|
readonly AttributeType: unknown | undefined;
|
|
358
382
|
get DefaultValue(): string | undefined;
|
|
@@ -379,6 +403,8 @@ export const XmlSchemaAttribute: {
|
|
|
379
403
|
export type XmlSchemaAttribute = XmlSchemaAttribute$instance;
|
|
380
404
|
|
|
381
405
|
export interface XmlSchemaAttributeGroup$instance extends XmlSchemaAnnotated {
|
|
406
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaAttributeGroup: never;
|
|
407
|
+
|
|
382
408
|
get AnyAttribute(): XmlSchemaAnyAttribute | undefined;
|
|
383
409
|
set AnyAttribute(value: XmlSchemaAnyAttribute | undefined);
|
|
384
410
|
readonly Attributes: XmlSchemaObjectCollection;
|
|
@@ -397,6 +423,8 @@ export const XmlSchemaAttributeGroup: {
|
|
|
397
423
|
export type XmlSchemaAttributeGroup = XmlSchemaAttributeGroup$instance;
|
|
398
424
|
|
|
399
425
|
export interface XmlSchemaAttributeGroupRef$instance extends XmlSchemaAnnotated {
|
|
426
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaAttributeGroupRef: never;
|
|
427
|
+
|
|
400
428
|
RefName: XmlQualifiedName;
|
|
401
429
|
}
|
|
402
430
|
|
|
@@ -409,6 +437,8 @@ export const XmlSchemaAttributeGroupRef: {
|
|
|
409
437
|
export type XmlSchemaAttributeGroupRef = XmlSchemaAttributeGroupRef$instance;
|
|
410
438
|
|
|
411
439
|
export interface XmlSchemaChoice$instance extends XmlSchemaGroupBase {
|
|
440
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaChoice: never;
|
|
441
|
+
|
|
412
442
|
readonly Items: XmlSchemaObjectCollection;
|
|
413
443
|
}
|
|
414
444
|
|
|
@@ -421,6 +451,11 @@ export const XmlSchemaChoice: {
|
|
|
421
451
|
export type XmlSchemaChoice = XmlSchemaChoice$instance;
|
|
422
452
|
|
|
423
453
|
export interface XmlSchemaCollection$instance {
|
|
454
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaCollection: never;
|
|
455
|
+
|
|
456
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
457
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
458
|
+
|
|
424
459
|
readonly Count: int;
|
|
425
460
|
readonly [ns: string]: XmlSchema | undefined;
|
|
426
461
|
readonly NameTable: XmlNameTable;
|
|
@@ -452,6 +487,10 @@ export type XmlSchemaCollection = XmlSchemaCollection$instance & __XmlSchemaColl
|
|
|
452
487
|
|
|
453
488
|
|
|
454
489
|
export interface XmlSchemaCollectionEnumerator$instance {
|
|
490
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaCollectionEnumerator: never;
|
|
491
|
+
|
|
492
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
493
|
+
|
|
455
494
|
readonly Current: XmlSchema;
|
|
456
495
|
MoveNext(): boolean;
|
|
457
496
|
Reset(): void;
|
|
@@ -470,6 +509,8 @@ export type XmlSchemaCollectionEnumerator = XmlSchemaCollectionEnumerator$instan
|
|
|
470
509
|
|
|
471
510
|
|
|
472
511
|
export interface XmlSchemaCompilationSettings$instance {
|
|
512
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaCompilationSettings: never;
|
|
513
|
+
|
|
473
514
|
EnableUpaCheck: boolean;
|
|
474
515
|
}
|
|
475
516
|
|
|
@@ -482,6 +523,8 @@ export const XmlSchemaCompilationSettings: {
|
|
|
482
523
|
export type XmlSchemaCompilationSettings = XmlSchemaCompilationSettings$instance;
|
|
483
524
|
|
|
484
525
|
export interface XmlSchemaComplexContent$instance extends XmlSchemaContentModel {
|
|
526
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaComplexContent: never;
|
|
527
|
+
|
|
485
528
|
get Content(): XmlSchemaContent | undefined;
|
|
486
529
|
set Content(value: XmlSchemaContent | undefined);
|
|
487
530
|
IsMixed: boolean;
|
|
@@ -496,6 +539,8 @@ export const XmlSchemaComplexContent: {
|
|
|
496
539
|
export type XmlSchemaComplexContent = XmlSchemaComplexContent$instance;
|
|
497
540
|
|
|
498
541
|
export interface XmlSchemaComplexContentExtension$instance extends XmlSchemaContent {
|
|
542
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaComplexContentExtension: never;
|
|
543
|
+
|
|
499
544
|
get AnyAttribute(): XmlSchemaAnyAttribute | undefined;
|
|
500
545
|
set AnyAttribute(value: XmlSchemaAnyAttribute | undefined);
|
|
501
546
|
readonly Attributes: XmlSchemaObjectCollection;
|
|
@@ -513,6 +558,8 @@ export const XmlSchemaComplexContentExtension: {
|
|
|
513
558
|
export type XmlSchemaComplexContentExtension = XmlSchemaComplexContentExtension$instance;
|
|
514
559
|
|
|
515
560
|
export interface XmlSchemaComplexContentRestriction$instance extends XmlSchemaContent {
|
|
561
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaComplexContentRestriction: never;
|
|
562
|
+
|
|
516
563
|
get AnyAttribute(): XmlSchemaAnyAttribute | undefined;
|
|
517
564
|
set AnyAttribute(value: XmlSchemaAnyAttribute | undefined);
|
|
518
565
|
readonly Attributes: XmlSchemaObjectCollection;
|
|
@@ -530,6 +577,8 @@ export const XmlSchemaComplexContentRestriction: {
|
|
|
530
577
|
export type XmlSchemaComplexContentRestriction = XmlSchemaComplexContentRestriction$instance;
|
|
531
578
|
|
|
532
579
|
export interface XmlSchemaComplexType$instance extends XmlSchemaType {
|
|
580
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaComplexType: never;
|
|
581
|
+
|
|
533
582
|
get AnyAttribute(): XmlSchemaAnyAttribute | undefined;
|
|
534
583
|
set AnyAttribute(value: XmlSchemaAnyAttribute | undefined);
|
|
535
584
|
readonly Attributes: XmlSchemaObjectCollection;
|
|
@@ -556,6 +605,8 @@ export const XmlSchemaComplexType: {
|
|
|
556
605
|
export type XmlSchemaComplexType = XmlSchemaComplexType$instance;
|
|
557
606
|
|
|
558
607
|
export interface XmlSchemaContent$instance extends XmlSchemaAnnotated {
|
|
608
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaContent: never;
|
|
609
|
+
|
|
559
610
|
}
|
|
560
611
|
|
|
561
612
|
|
|
@@ -566,6 +617,8 @@ export const XmlSchemaContent: (abstract new() => XmlSchemaContent) & {
|
|
|
566
617
|
export type XmlSchemaContent = XmlSchemaContent$instance;
|
|
567
618
|
|
|
568
619
|
export interface XmlSchemaContentModel$instance extends XmlSchemaAnnotated {
|
|
620
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaContentModel: never;
|
|
621
|
+
|
|
569
622
|
get Content(): XmlSchemaContent | undefined;
|
|
570
623
|
set Content(value: XmlSchemaContent | undefined);
|
|
571
624
|
}
|
|
@@ -578,6 +631,8 @@ export const XmlSchemaContentModel: (abstract new() => XmlSchemaContentModel) &
|
|
|
578
631
|
export type XmlSchemaContentModel = XmlSchemaContentModel$instance;
|
|
579
632
|
|
|
580
633
|
export interface XmlSchemaDatatype$instance {
|
|
634
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaDatatype: never;
|
|
635
|
+
|
|
581
636
|
readonly TokenizedType: XmlTokenizedType;
|
|
582
637
|
readonly TypeCode: XmlTypeCode;
|
|
583
638
|
readonly ValueType: Type;
|
|
@@ -596,6 +651,8 @@ export const XmlSchemaDatatype: {
|
|
|
596
651
|
export type XmlSchemaDatatype = XmlSchemaDatatype$instance;
|
|
597
652
|
|
|
598
653
|
export interface XmlSchemaDocumentation$instance extends XmlSchemaObject {
|
|
654
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaDocumentation: never;
|
|
655
|
+
|
|
599
656
|
get Language(): string | undefined;
|
|
600
657
|
set Language(value: string | undefined);
|
|
601
658
|
get Markup(): (XmlNode | undefined)[] | undefined;
|
|
@@ -613,6 +670,8 @@ export const XmlSchemaDocumentation: {
|
|
|
613
670
|
export type XmlSchemaDocumentation = XmlSchemaDocumentation$instance;
|
|
614
671
|
|
|
615
672
|
export interface XmlSchemaElement$instance extends XmlSchemaParticle {
|
|
673
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaElement: never;
|
|
674
|
+
|
|
616
675
|
Block: XmlSchemaDerivationMethod;
|
|
617
676
|
readonly BlockResolved: XmlSchemaDerivationMethod;
|
|
618
677
|
readonly Constraints: XmlSchemaObjectCollection;
|
|
@@ -646,6 +705,8 @@ export const XmlSchemaElement: {
|
|
|
646
705
|
export type XmlSchemaElement = XmlSchemaElement$instance;
|
|
647
706
|
|
|
648
707
|
export interface XmlSchemaEnumerationFacet$instance extends XmlSchemaFacet {
|
|
708
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaEnumerationFacet: never;
|
|
709
|
+
|
|
649
710
|
}
|
|
650
711
|
|
|
651
712
|
|
|
@@ -657,6 +718,10 @@ export const XmlSchemaEnumerationFacet: {
|
|
|
657
718
|
export type XmlSchemaEnumerationFacet = XmlSchemaEnumerationFacet$instance;
|
|
658
719
|
|
|
659
720
|
export interface XmlSchemaException$instance extends SystemException {
|
|
721
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaException: never;
|
|
722
|
+
|
|
723
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
724
|
+
|
|
660
725
|
readonly LineNumber: int;
|
|
661
726
|
readonly LinePosition: int;
|
|
662
727
|
readonly Message: string;
|
|
@@ -682,6 +747,8 @@ export type XmlSchemaException = XmlSchemaException$instance & __XmlSchemaExcept
|
|
|
682
747
|
|
|
683
748
|
|
|
684
749
|
export interface XmlSchemaExternal$instance extends XmlSchemaObject {
|
|
750
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaExternal: never;
|
|
751
|
+
|
|
685
752
|
get Id(): string | undefined;
|
|
686
753
|
set Id(value: string | undefined);
|
|
687
754
|
get Schema(): XmlSchema | undefined;
|
|
@@ -700,6 +767,8 @@ export const XmlSchemaExternal: (abstract new() => XmlSchemaExternal) & {
|
|
|
700
767
|
export type XmlSchemaExternal = XmlSchemaExternal$instance;
|
|
701
768
|
|
|
702
769
|
export interface XmlSchemaFacet$instance extends XmlSchemaAnnotated {
|
|
770
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaFacet: never;
|
|
771
|
+
|
|
703
772
|
IsFixed: boolean;
|
|
704
773
|
get Value(): string | undefined;
|
|
705
774
|
set Value(value: string | undefined);
|
|
@@ -713,6 +782,8 @@ export const XmlSchemaFacet: (abstract new() => XmlSchemaFacet) & {
|
|
|
713
782
|
export type XmlSchemaFacet = XmlSchemaFacet$instance;
|
|
714
783
|
|
|
715
784
|
export interface XmlSchemaFractionDigitsFacet$instance extends XmlSchemaNumericFacet {
|
|
785
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaFractionDigitsFacet: never;
|
|
786
|
+
|
|
716
787
|
}
|
|
717
788
|
|
|
718
789
|
|
|
@@ -724,6 +795,8 @@ export const XmlSchemaFractionDigitsFacet: {
|
|
|
724
795
|
export type XmlSchemaFractionDigitsFacet = XmlSchemaFractionDigitsFacet$instance;
|
|
725
796
|
|
|
726
797
|
export interface XmlSchemaGroup$instance extends XmlSchemaAnnotated {
|
|
798
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaGroup: never;
|
|
799
|
+
|
|
727
800
|
get Name(): string | undefined;
|
|
728
801
|
set Name(value: string | undefined);
|
|
729
802
|
get Particle(): XmlSchemaGroupBase | undefined;
|
|
@@ -740,6 +813,8 @@ export const XmlSchemaGroup: {
|
|
|
740
813
|
export type XmlSchemaGroup = XmlSchemaGroup$instance;
|
|
741
814
|
|
|
742
815
|
export interface XmlSchemaGroupBase$instance extends XmlSchemaParticle {
|
|
816
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaGroupBase: never;
|
|
817
|
+
|
|
743
818
|
readonly Items: XmlSchemaObjectCollection;
|
|
744
819
|
}
|
|
745
820
|
|
|
@@ -751,6 +826,8 @@ export const XmlSchemaGroupBase: {
|
|
|
751
826
|
export type XmlSchemaGroupBase = XmlSchemaGroupBase$instance;
|
|
752
827
|
|
|
753
828
|
export interface XmlSchemaGroupRef$instance extends XmlSchemaParticle {
|
|
829
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaGroupRef: never;
|
|
830
|
+
|
|
754
831
|
readonly Particle: XmlSchemaGroupBase | undefined;
|
|
755
832
|
RefName: XmlQualifiedName;
|
|
756
833
|
}
|
|
@@ -764,6 +841,8 @@ export const XmlSchemaGroupRef: {
|
|
|
764
841
|
export type XmlSchemaGroupRef = XmlSchemaGroupRef$instance;
|
|
765
842
|
|
|
766
843
|
export interface XmlSchemaIdentityConstraint$instance extends XmlSchemaAnnotated {
|
|
844
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaIdentityConstraint: never;
|
|
845
|
+
|
|
767
846
|
readonly Fields: XmlSchemaObjectCollection;
|
|
768
847
|
get Name(): string | undefined;
|
|
769
848
|
set Name(value: string | undefined);
|
|
@@ -781,6 +860,8 @@ export const XmlSchemaIdentityConstraint: {
|
|
|
781
860
|
export type XmlSchemaIdentityConstraint = XmlSchemaIdentityConstraint$instance;
|
|
782
861
|
|
|
783
862
|
export interface XmlSchemaImport$instance extends XmlSchemaExternal {
|
|
863
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaImport: never;
|
|
864
|
+
|
|
784
865
|
get Annotation(): XmlSchemaAnnotation | undefined;
|
|
785
866
|
set Annotation(value: XmlSchemaAnnotation | undefined);
|
|
786
867
|
get Namespace(): string | undefined;
|
|
@@ -796,6 +877,8 @@ export const XmlSchemaImport: {
|
|
|
796
877
|
export type XmlSchemaImport = XmlSchemaImport$instance;
|
|
797
878
|
|
|
798
879
|
export interface XmlSchemaInclude$instance extends XmlSchemaExternal {
|
|
880
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaInclude: never;
|
|
881
|
+
|
|
799
882
|
get Annotation(): XmlSchemaAnnotation | undefined;
|
|
800
883
|
set Annotation(value: XmlSchemaAnnotation | undefined);
|
|
801
884
|
}
|
|
@@ -809,6 +892,8 @@ export const XmlSchemaInclude: {
|
|
|
809
892
|
export type XmlSchemaInclude = XmlSchemaInclude$instance;
|
|
810
893
|
|
|
811
894
|
export interface XmlSchemaInference$instance {
|
|
895
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaInference: never;
|
|
896
|
+
|
|
812
897
|
Occurrence: XmlSchemaInference_InferenceOption;
|
|
813
898
|
TypeInference: XmlSchemaInference_InferenceOption;
|
|
814
899
|
InferSchema(instanceDocument: XmlReader): XmlSchemaSet;
|
|
@@ -824,6 +909,10 @@ export const XmlSchemaInference: {
|
|
|
824
909
|
export type XmlSchemaInference = XmlSchemaInference$instance;
|
|
825
910
|
|
|
826
911
|
export interface XmlSchemaInferenceException$instance extends XmlSchemaException$instance {
|
|
912
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaInferenceException: never;
|
|
913
|
+
|
|
914
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
915
|
+
|
|
827
916
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
828
917
|
}
|
|
829
918
|
|
|
@@ -844,6 +933,10 @@ export type XmlSchemaInferenceException = XmlSchemaInferenceException$instance &
|
|
|
844
933
|
|
|
845
934
|
|
|
846
935
|
export interface XmlSchemaInfo$instance {
|
|
936
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaInfo: never;
|
|
937
|
+
|
|
938
|
+
readonly __tsonic_iface_System_Xml_Schema_IXmlSchemaInfo: never;
|
|
939
|
+
|
|
847
940
|
ContentType: XmlSchemaContentType;
|
|
848
941
|
IsDefault: boolean;
|
|
849
942
|
IsNil: boolean;
|
|
@@ -872,6 +965,8 @@ export type XmlSchemaInfo = XmlSchemaInfo$instance & __XmlSchemaInfo$views;
|
|
|
872
965
|
|
|
873
966
|
|
|
874
967
|
export interface XmlSchemaKey$instance extends XmlSchemaIdentityConstraint {
|
|
968
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaKey: never;
|
|
969
|
+
|
|
875
970
|
}
|
|
876
971
|
|
|
877
972
|
|
|
@@ -883,6 +978,8 @@ export const XmlSchemaKey: {
|
|
|
883
978
|
export type XmlSchemaKey = XmlSchemaKey$instance;
|
|
884
979
|
|
|
885
980
|
export interface XmlSchemaKeyref$instance extends XmlSchemaIdentityConstraint {
|
|
981
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaKeyref: never;
|
|
982
|
+
|
|
886
983
|
Refer: XmlQualifiedName;
|
|
887
984
|
}
|
|
888
985
|
|
|
@@ -895,6 +992,8 @@ export const XmlSchemaKeyref: {
|
|
|
895
992
|
export type XmlSchemaKeyref = XmlSchemaKeyref$instance;
|
|
896
993
|
|
|
897
994
|
export interface XmlSchemaLengthFacet$instance extends XmlSchemaNumericFacet {
|
|
995
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaLengthFacet: never;
|
|
996
|
+
|
|
898
997
|
}
|
|
899
998
|
|
|
900
999
|
|
|
@@ -906,6 +1005,8 @@ export const XmlSchemaLengthFacet: {
|
|
|
906
1005
|
export type XmlSchemaLengthFacet = XmlSchemaLengthFacet$instance;
|
|
907
1006
|
|
|
908
1007
|
export interface XmlSchemaMaxExclusiveFacet$instance extends XmlSchemaFacet {
|
|
1008
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaMaxExclusiveFacet: never;
|
|
1009
|
+
|
|
909
1010
|
}
|
|
910
1011
|
|
|
911
1012
|
|
|
@@ -917,6 +1018,8 @@ export const XmlSchemaMaxExclusiveFacet: {
|
|
|
917
1018
|
export type XmlSchemaMaxExclusiveFacet = XmlSchemaMaxExclusiveFacet$instance;
|
|
918
1019
|
|
|
919
1020
|
export interface XmlSchemaMaxInclusiveFacet$instance extends XmlSchemaFacet {
|
|
1021
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaMaxInclusiveFacet: never;
|
|
1022
|
+
|
|
920
1023
|
}
|
|
921
1024
|
|
|
922
1025
|
|
|
@@ -928,6 +1031,8 @@ export const XmlSchemaMaxInclusiveFacet: {
|
|
|
928
1031
|
export type XmlSchemaMaxInclusiveFacet = XmlSchemaMaxInclusiveFacet$instance;
|
|
929
1032
|
|
|
930
1033
|
export interface XmlSchemaMaxLengthFacet$instance extends XmlSchemaNumericFacet {
|
|
1034
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaMaxLengthFacet: never;
|
|
1035
|
+
|
|
931
1036
|
}
|
|
932
1037
|
|
|
933
1038
|
|
|
@@ -939,6 +1044,8 @@ export const XmlSchemaMaxLengthFacet: {
|
|
|
939
1044
|
export type XmlSchemaMaxLengthFacet = XmlSchemaMaxLengthFacet$instance;
|
|
940
1045
|
|
|
941
1046
|
export interface XmlSchemaMinExclusiveFacet$instance extends XmlSchemaFacet {
|
|
1047
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaMinExclusiveFacet: never;
|
|
1048
|
+
|
|
942
1049
|
}
|
|
943
1050
|
|
|
944
1051
|
|
|
@@ -950,6 +1057,8 @@ export const XmlSchemaMinExclusiveFacet: {
|
|
|
950
1057
|
export type XmlSchemaMinExclusiveFacet = XmlSchemaMinExclusiveFacet$instance;
|
|
951
1058
|
|
|
952
1059
|
export interface XmlSchemaMinInclusiveFacet$instance extends XmlSchemaFacet {
|
|
1060
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaMinInclusiveFacet: never;
|
|
1061
|
+
|
|
953
1062
|
}
|
|
954
1063
|
|
|
955
1064
|
|
|
@@ -961,6 +1070,8 @@ export const XmlSchemaMinInclusiveFacet: {
|
|
|
961
1070
|
export type XmlSchemaMinInclusiveFacet = XmlSchemaMinInclusiveFacet$instance;
|
|
962
1071
|
|
|
963
1072
|
export interface XmlSchemaMinLengthFacet$instance extends XmlSchemaNumericFacet {
|
|
1073
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaMinLengthFacet: never;
|
|
1074
|
+
|
|
964
1075
|
}
|
|
965
1076
|
|
|
966
1077
|
|
|
@@ -972,6 +1083,8 @@ export const XmlSchemaMinLengthFacet: {
|
|
|
972
1083
|
export type XmlSchemaMinLengthFacet = XmlSchemaMinLengthFacet$instance;
|
|
973
1084
|
|
|
974
1085
|
export interface XmlSchemaNotation$instance extends XmlSchemaAnnotated {
|
|
1086
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaNotation: never;
|
|
1087
|
+
|
|
975
1088
|
get Name(): string | undefined;
|
|
976
1089
|
set Name(value: string | undefined);
|
|
977
1090
|
get Public(): string | undefined;
|
|
@@ -989,6 +1102,8 @@ export const XmlSchemaNotation: {
|
|
|
989
1102
|
export type XmlSchemaNotation = XmlSchemaNotation$instance;
|
|
990
1103
|
|
|
991
1104
|
export interface XmlSchemaNumericFacet$instance extends XmlSchemaFacet {
|
|
1105
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaNumericFacet: never;
|
|
1106
|
+
|
|
992
1107
|
}
|
|
993
1108
|
|
|
994
1109
|
|
|
@@ -999,6 +1114,8 @@ export const XmlSchemaNumericFacet: (abstract new() => XmlSchemaNumericFacet) &
|
|
|
999
1114
|
export type XmlSchemaNumericFacet = XmlSchemaNumericFacet$instance;
|
|
1000
1115
|
|
|
1001
1116
|
export interface XmlSchemaObject$instance {
|
|
1117
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaObject: never;
|
|
1118
|
+
|
|
1002
1119
|
LineNumber: int;
|
|
1003
1120
|
LinePosition: int;
|
|
1004
1121
|
Namespaces: XmlSerializerNamespaces;
|
|
@@ -1016,6 +1133,12 @@ export const XmlSchemaObject: (abstract new() => XmlSchemaObject) & {
|
|
|
1016
1133
|
export type XmlSchemaObject = XmlSchemaObject$instance;
|
|
1017
1134
|
|
|
1018
1135
|
export interface XmlSchemaObjectCollection$instance extends CollectionBase {
|
|
1136
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaObjectCollection: never;
|
|
1137
|
+
|
|
1138
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1139
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1140
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
1141
|
+
|
|
1019
1142
|
[index: number]: XmlSchemaObject;
|
|
1020
1143
|
Add(value: unknown): int;
|
|
1021
1144
|
Clear(): void;
|
|
@@ -1049,6 +1172,10 @@ export type XmlSchemaObjectCollection = XmlSchemaObjectCollection$instance & __X
|
|
|
1049
1172
|
|
|
1050
1173
|
|
|
1051
1174
|
export interface XmlSchemaObjectEnumerator$instance {
|
|
1175
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaObjectEnumerator: never;
|
|
1176
|
+
|
|
1177
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
1178
|
+
|
|
1052
1179
|
readonly Current: XmlSchemaObject;
|
|
1053
1180
|
MoveNext(): boolean;
|
|
1054
1181
|
Reset(): void;
|
|
@@ -1067,6 +1194,8 @@ export type XmlSchemaObjectEnumerator = XmlSchemaObjectEnumerator$instance & __X
|
|
|
1067
1194
|
|
|
1068
1195
|
|
|
1069
1196
|
export interface XmlSchemaObjectTable$instance {
|
|
1197
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaObjectTable: never;
|
|
1198
|
+
|
|
1070
1199
|
readonly Count: int;
|
|
1071
1200
|
readonly Item: XmlSchemaObject | undefined;
|
|
1072
1201
|
readonly Names: ICollection;
|
|
@@ -1083,6 +1212,8 @@ export const XmlSchemaObjectTable: {
|
|
|
1083
1212
|
export type XmlSchemaObjectTable = XmlSchemaObjectTable$instance;
|
|
1084
1213
|
|
|
1085
1214
|
export interface XmlSchemaParticle$instance extends XmlSchemaAnnotated {
|
|
1215
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaParticle: never;
|
|
1216
|
+
|
|
1086
1217
|
MaxOccurs: decimal;
|
|
1087
1218
|
get MaxOccursString(): string | undefined;
|
|
1088
1219
|
set MaxOccursString(value: string | undefined);
|
|
@@ -1099,6 +1230,8 @@ export const XmlSchemaParticle: (abstract new() => XmlSchemaParticle) & {
|
|
|
1099
1230
|
export type XmlSchemaParticle = XmlSchemaParticle$instance;
|
|
1100
1231
|
|
|
1101
1232
|
export interface XmlSchemaPatternFacet$instance extends XmlSchemaFacet {
|
|
1233
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaPatternFacet: never;
|
|
1234
|
+
|
|
1102
1235
|
}
|
|
1103
1236
|
|
|
1104
1237
|
|
|
@@ -1110,6 +1243,8 @@ export const XmlSchemaPatternFacet: {
|
|
|
1110
1243
|
export type XmlSchemaPatternFacet = XmlSchemaPatternFacet$instance;
|
|
1111
1244
|
|
|
1112
1245
|
export interface XmlSchemaRedefine$instance extends XmlSchemaExternal {
|
|
1246
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaRedefine: never;
|
|
1247
|
+
|
|
1113
1248
|
readonly AttributeGroups: XmlSchemaObjectTable;
|
|
1114
1249
|
readonly Groups: XmlSchemaObjectTable;
|
|
1115
1250
|
readonly Items: XmlSchemaObjectCollection;
|
|
@@ -1125,6 +1260,8 @@ export const XmlSchemaRedefine: {
|
|
|
1125
1260
|
export type XmlSchemaRedefine = XmlSchemaRedefine$instance;
|
|
1126
1261
|
|
|
1127
1262
|
export interface XmlSchemaSequence$instance extends XmlSchemaGroupBase {
|
|
1263
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaSequence: never;
|
|
1264
|
+
|
|
1128
1265
|
readonly Items: XmlSchemaObjectCollection;
|
|
1129
1266
|
}
|
|
1130
1267
|
|
|
@@ -1137,6 +1274,8 @@ export const XmlSchemaSequence: {
|
|
|
1137
1274
|
export type XmlSchemaSequence = XmlSchemaSequence$instance;
|
|
1138
1275
|
|
|
1139
1276
|
export interface XmlSchemaSet$instance {
|
|
1277
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaSet: never;
|
|
1278
|
+
|
|
1140
1279
|
CompilationSettings: XmlSchemaCompilationSettings;
|
|
1141
1280
|
readonly Count: int;
|
|
1142
1281
|
readonly GlobalAttributes: XmlSchemaObjectTable;
|
|
@@ -1170,6 +1309,8 @@ export const XmlSchemaSet: {
|
|
|
1170
1309
|
export type XmlSchemaSet = XmlSchemaSet$instance;
|
|
1171
1310
|
|
|
1172
1311
|
export interface XmlSchemaSimpleContent$instance extends XmlSchemaContentModel {
|
|
1312
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaSimpleContent: never;
|
|
1313
|
+
|
|
1173
1314
|
get Content(): XmlSchemaContent | undefined;
|
|
1174
1315
|
set Content(value: XmlSchemaContent | undefined);
|
|
1175
1316
|
}
|
|
@@ -1183,6 +1324,8 @@ export const XmlSchemaSimpleContent: {
|
|
|
1183
1324
|
export type XmlSchemaSimpleContent = XmlSchemaSimpleContent$instance;
|
|
1184
1325
|
|
|
1185
1326
|
export interface XmlSchemaSimpleContentExtension$instance extends XmlSchemaContent {
|
|
1327
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaSimpleContentExtension: never;
|
|
1328
|
+
|
|
1186
1329
|
get AnyAttribute(): XmlSchemaAnyAttribute | undefined;
|
|
1187
1330
|
set AnyAttribute(value: XmlSchemaAnyAttribute | undefined);
|
|
1188
1331
|
readonly Attributes: XmlSchemaObjectCollection;
|
|
@@ -1198,6 +1341,8 @@ export const XmlSchemaSimpleContentExtension: {
|
|
|
1198
1341
|
export type XmlSchemaSimpleContentExtension = XmlSchemaSimpleContentExtension$instance;
|
|
1199
1342
|
|
|
1200
1343
|
export interface XmlSchemaSimpleContentRestriction$instance extends XmlSchemaContent {
|
|
1344
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaSimpleContentRestriction: never;
|
|
1345
|
+
|
|
1201
1346
|
get AnyAttribute(): XmlSchemaAnyAttribute | undefined;
|
|
1202
1347
|
set AnyAttribute(value: XmlSchemaAnyAttribute | undefined);
|
|
1203
1348
|
readonly Attributes: XmlSchemaObjectCollection;
|
|
@@ -1216,6 +1361,8 @@ export const XmlSchemaSimpleContentRestriction: {
|
|
|
1216
1361
|
export type XmlSchemaSimpleContentRestriction = XmlSchemaSimpleContentRestriction$instance;
|
|
1217
1362
|
|
|
1218
1363
|
export interface XmlSchemaSimpleType$instance extends XmlSchemaType {
|
|
1364
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaSimpleType: never;
|
|
1365
|
+
|
|
1219
1366
|
get Content(): XmlSchemaSimpleTypeContent | undefined;
|
|
1220
1367
|
set Content(value: XmlSchemaSimpleTypeContent | undefined);
|
|
1221
1368
|
}
|
|
@@ -1229,6 +1376,8 @@ export const XmlSchemaSimpleType: {
|
|
|
1229
1376
|
export type XmlSchemaSimpleType = XmlSchemaSimpleType$instance;
|
|
1230
1377
|
|
|
1231
1378
|
export interface XmlSchemaSimpleTypeContent$instance extends XmlSchemaAnnotated {
|
|
1379
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaSimpleTypeContent: never;
|
|
1380
|
+
|
|
1232
1381
|
}
|
|
1233
1382
|
|
|
1234
1383
|
|
|
@@ -1239,6 +1388,8 @@ export const XmlSchemaSimpleTypeContent: (abstract new() => XmlSchemaSimpleTypeC
|
|
|
1239
1388
|
export type XmlSchemaSimpleTypeContent = XmlSchemaSimpleTypeContent$instance;
|
|
1240
1389
|
|
|
1241
1390
|
export interface XmlSchemaSimpleTypeList$instance extends XmlSchemaSimpleTypeContent {
|
|
1391
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaSimpleTypeList: never;
|
|
1392
|
+
|
|
1242
1393
|
get BaseItemType(): XmlSchemaSimpleType | undefined;
|
|
1243
1394
|
set BaseItemType(value: XmlSchemaSimpleType | undefined);
|
|
1244
1395
|
get ItemType(): XmlSchemaSimpleType | undefined;
|
|
@@ -1255,6 +1406,8 @@ export const XmlSchemaSimpleTypeList: {
|
|
|
1255
1406
|
export type XmlSchemaSimpleTypeList = XmlSchemaSimpleTypeList$instance;
|
|
1256
1407
|
|
|
1257
1408
|
export interface XmlSchemaSimpleTypeRestriction$instance extends XmlSchemaSimpleTypeContent {
|
|
1409
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaSimpleTypeRestriction: never;
|
|
1410
|
+
|
|
1258
1411
|
get BaseType(): XmlSchemaSimpleType | undefined;
|
|
1259
1412
|
set BaseType(value: XmlSchemaSimpleType | undefined);
|
|
1260
1413
|
BaseTypeName: XmlQualifiedName;
|
|
@@ -1270,6 +1423,8 @@ export const XmlSchemaSimpleTypeRestriction: {
|
|
|
1270
1423
|
export type XmlSchemaSimpleTypeRestriction = XmlSchemaSimpleTypeRestriction$instance;
|
|
1271
1424
|
|
|
1272
1425
|
export interface XmlSchemaSimpleTypeUnion$instance extends XmlSchemaSimpleTypeContent {
|
|
1426
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaSimpleTypeUnion: never;
|
|
1427
|
+
|
|
1273
1428
|
readonly BaseMemberTypes: XmlSchemaSimpleType[] | undefined;
|
|
1274
1429
|
readonly BaseTypes: XmlSchemaObjectCollection;
|
|
1275
1430
|
get MemberTypes(): XmlQualifiedName[] | undefined;
|
|
@@ -1285,6 +1440,8 @@ export const XmlSchemaSimpleTypeUnion: {
|
|
|
1285
1440
|
export type XmlSchemaSimpleTypeUnion = XmlSchemaSimpleTypeUnion$instance;
|
|
1286
1441
|
|
|
1287
1442
|
export interface XmlSchemaTotalDigitsFacet$instance extends XmlSchemaNumericFacet {
|
|
1443
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaTotalDigitsFacet: never;
|
|
1444
|
+
|
|
1288
1445
|
}
|
|
1289
1446
|
|
|
1290
1447
|
|
|
@@ -1296,6 +1453,8 @@ export const XmlSchemaTotalDigitsFacet: {
|
|
|
1296
1453
|
export type XmlSchemaTotalDigitsFacet = XmlSchemaTotalDigitsFacet$instance;
|
|
1297
1454
|
|
|
1298
1455
|
export interface XmlSchemaType$instance extends XmlSchemaAnnotated {
|
|
1456
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaType: never;
|
|
1457
|
+
|
|
1299
1458
|
readonly BaseSchemaType: unknown | undefined;
|
|
1300
1459
|
readonly BaseXmlSchemaType: XmlSchemaType | undefined;
|
|
1301
1460
|
readonly Datatype: XmlSchemaDatatype | undefined;
|
|
@@ -1323,6 +1482,8 @@ export const XmlSchemaType: {
|
|
|
1323
1482
|
export type XmlSchemaType = XmlSchemaType$instance;
|
|
1324
1483
|
|
|
1325
1484
|
export interface XmlSchemaUnique$instance extends XmlSchemaIdentityConstraint {
|
|
1485
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaUnique: never;
|
|
1486
|
+
|
|
1326
1487
|
}
|
|
1327
1488
|
|
|
1328
1489
|
|
|
@@ -1334,6 +1495,10 @@ export const XmlSchemaUnique: {
|
|
|
1334
1495
|
export type XmlSchemaUnique = XmlSchemaUnique$instance;
|
|
1335
1496
|
|
|
1336
1497
|
export interface XmlSchemaValidationException$instance extends XmlSchemaException$instance {
|
|
1498
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaValidationException: never;
|
|
1499
|
+
|
|
1500
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1501
|
+
|
|
1337
1502
|
readonly SourceObject: unknown | undefined;
|
|
1338
1503
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1339
1504
|
}
|
|
@@ -1355,6 +1520,8 @@ export type XmlSchemaValidationException = XmlSchemaValidationException$instance
|
|
|
1355
1520
|
|
|
1356
1521
|
|
|
1357
1522
|
export interface XmlSchemaValidator$instance {
|
|
1523
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaValidator: never;
|
|
1524
|
+
|
|
1358
1525
|
LineInfoProvider: IXmlLineInfo;
|
|
1359
1526
|
get SourceUri(): Uri | undefined;
|
|
1360
1527
|
set SourceUri(value: Uri | undefined);
|
|
@@ -1390,6 +1557,8 @@ export const XmlSchemaValidator: {
|
|
|
1390
1557
|
export type XmlSchemaValidator = XmlSchemaValidator$instance;
|
|
1391
1558
|
|
|
1392
1559
|
export interface XmlSchemaWhiteSpaceFacet$instance extends XmlSchemaFacet {
|
|
1560
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaWhiteSpaceFacet: never;
|
|
1561
|
+
|
|
1393
1562
|
}
|
|
1394
1563
|
|
|
1395
1564
|
|
|
@@ -1401,6 +1570,8 @@ export const XmlSchemaWhiteSpaceFacet: {
|
|
|
1401
1570
|
export type XmlSchemaWhiteSpaceFacet = XmlSchemaWhiteSpaceFacet$instance;
|
|
1402
1571
|
|
|
1403
1572
|
export interface XmlSchemaXPath$instance extends XmlSchemaAnnotated {
|
|
1573
|
+
readonly __tsonic_type_System_Xml_Schema_XmlSchemaXPath: never;
|
|
1574
|
+
|
|
1404
1575
|
get XPath(): string | undefined;
|
|
1405
1576
|
set XPath(value: string | undefined);
|
|
1406
1577
|
}
|