Files
Apr2020-Cpp2Il-Dump/System.Xml/Schema/XmlSchemaSet.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

93 lines
3.0 KiB
C#

using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>Contains a cache of XML Schema definition language (XSD) schemas.</summary>
// Token: 0x0200011F RID: 287
[Token(Token = "0x200011F")]
public class XmlSchemaSet
{
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> class.</summary>
// Token: 0x06000893 RID: 2195 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000893")]
[Address(RVA = "0x5D1370", Offset = "0x5D0170", VA = "0x1805D1370")]
public XmlSchemaSet()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> class with the specified <see cref="T:System.Xml.XmlNameTable" />.</summary>
/// <param name="nameTable">The <see cref="T:System.Xml.XmlNameTable" /> object to use.</param>
/// <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.XmlNameTable" /> object passed as a parameter is <see langword="null" />.</exception>
// Token: 0x06000894 RID: 2196 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000894")]
[Address(RVA = "0x5D13D0", Offset = "0x5D01D0", VA = "0x1805D13D0")]
public XmlSchemaSet(XmlNameTable nameTable)
{
}
// Token: 0x06000895 RID: 2197 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000895")]
[Address(RVA = "0x5D1310", Offset = "0x5D0110", VA = "0x1805D1310")]
private void InternalValidationCallback(object sender, ValidationEventArgs e)
{
}
// Token: 0x04000440 RID: 1088
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000440")]
private XmlNameTable nameTable;
// Token: 0x04000441 RID: 1089
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000441")]
private SortedList schemas;
// Token: 0x04000442 RID: 1090
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000442")]
private ValidationEventHandler internalEventHandler;
// Token: 0x04000443 RID: 1091
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x4000443")]
private ValidationEventHandler eventHandler;
// Token: 0x04000444 RID: 1092
[FieldOffset(Offset = "0x30")]
[Token(Token = "0x4000444")]
private Hashtable schemaLocations;
// Token: 0x04000445 RID: 1093
[FieldOffset(Offset = "0x38")]
[Token(Token = "0x4000445")]
private Hashtable chameleonSchemas;
// Token: 0x04000446 RID: 1094
[FieldOffset(Offset = "0x40")]
[Token(Token = "0x4000446")]
private Hashtable targetNamespaces;
// Token: 0x04000447 RID: 1095
[FieldOffset(Offset = "0x48")]
[Token(Token = "0x4000447")]
private bool compileAll;
// Token: 0x04000448 RID: 1096
[FieldOffset(Offset = "0x50")]
[Token(Token = "0x4000448")]
private SchemaInfo cachedCompiledInfo;
// Token: 0x04000449 RID: 1097
[FieldOffset(Offset = "0x58")]
[Token(Token = "0x4000449")]
private XmlReaderSettings readerSettings;
// Token: 0x0400044A RID: 1098
[FieldOffset(Offset = "0x60")]
[Token(Token = "0x400044A")]
private XmlSchemaCompilationSettings compilationSettings;
}
}