Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

1047 lines
44 KiB
C#

using System;
using System.Collections;
using System.Text;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>Represents an XML Schema Definition Language (XSD) Schema validation engine. The <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> class cannot be inherited.</summary>
// Token: 0x02000265 RID: 613
[Token(Token = "0x2000265")]
public sealed class XmlSchemaValidator
{
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> class.</summary>
/// <param name="nameTable">An <see cref="T:System.Xml.XmlNameTable" /> object containing element and attribute names as atomized strings.</param>
/// <param name="schemas">An <see cref="T:System.Xml.Schema.XmlSchemaSet" /> object containing the XML Schema Definition Language (XSD) schemas used for validation.</param>
/// <param name="namespaceResolver">An <see cref="T:System.Xml.IXmlNamespaceResolver" /> object used for resolving namespaces encountered during validation.</param>
/// <param name="validationFlags">An <see cref="T:System.Xml.Schema.XmlSchemaValidationFlags" /> value specifying schema validation options.</param>
/// <exception cref="T:System.ArgumentNullException">One or more of the parameters specified are <see langword="null" />.</exception>
/// <exception cref="T:System.Xml.Schema.XmlSchemaException">An error occurred while compiling schemas in the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> parameter.</exception>
// Token: 0x0600177F RID: 6015 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600177F")]
[Address(RVA = "0x579BD0", Offset = "0x578BD0", VA = "0x180579BD0")]
public XmlSchemaValidator(XmlNameTable nameTable, XmlSchemaSet schemas, IXmlNamespaceResolver namespaceResolver, XmlSchemaValidationFlags validationFlags)
{
}
// Token: 0x06001780 RID: 6016 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001780")]
[Address(RVA = "0x573B00", Offset = "0x572B00", VA = "0x180573B00")]
private void Init()
{
}
// Token: 0x06001781 RID: 6017 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001781")]
[Address(RVA = "0x5763E0", Offset = "0x5753E0", VA = "0x1805763E0")]
private void Reset()
{
}
/// <summary>Sets the <see cref="T:System.Xml.XmlResolver" /> object used to resolve xs:import and xs:include elements as well as xsi:schemaLocation and xsi:noNamespaceSchemaLocation attributes.</summary>
/// <returns>An <see cref="T:System.Xml.XmlResolver" /> object; the default is an <see cref="T:System.Xml.XmlUrlResolver" /> object.</returns>
// Token: 0x170006AE RID: 1710
// (set) Token: 0x06001782 RID: 6018 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170006AE")]
public XmlResolver XmlResolver
{
[Token(Token = "0x6001782")]
[Address(RVA = "0x44E020", Offset = "0x44D020", VA = "0x18044E020")]
set
{
}
}
/// <summary>Gets or sets the line number information for the XML node being validated.</summary>
/// <returns>An <see cref="T:System.Xml.IXmlLineInfo" /> object.</returns>
// Token: 0x170006AF RID: 1711
// (set) Token: 0x06001783 RID: 6019 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170006AF")]
public IXmlLineInfo LineInfoProvider
{
[Token(Token = "0x6001783")]
[Address(RVA = "0x57A010", Offset = "0x579010", VA = "0x18057A010")]
set
{
}
}
/// <summary>Gets or sets the source URI for the XML node being validated.</summary>
/// <returns>A <see cref="T:System.Uri" /> object representing the source URI for the XML node being validated; the default is <see langword="null" />.</returns>
// Token: 0x170006B0 RID: 1712
// (set) Token: 0x06001784 RID: 6020 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170006B0")]
public Uri SourceUri
{
[Token(Token = "0x6001784")]
[Address(RVA = "0x57A030", Offset = "0x579030", VA = "0x18057A030")]
set
{
}
}
/// <summary>Gets or sets the object sent as the sender object of a validation event.</summary>
/// <returns>An <see cref="T:System.Object" />; the default is this <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> object.</returns>
// Token: 0x170006B1 RID: 1713
// (set) Token: 0x06001785 RID: 6021 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170006B1")]
public object ValidationEventSender
{
[Token(Token = "0x6001785")]
[Address(RVA = "0x42B6C0", Offset = "0x42A6C0", VA = "0x18042B6C0")]
set
{
}
}
/// <summary>The <see cref="T:System.Xml.Schema.ValidationEventHandler" /> that receives schema validation warnings and errors encountered during schema validation.</summary>
// Token: 0x14000002 RID: 2
// (add) Token: 0x06001786 RID: 6022 RVA: 0x00002053 File Offset: 0x00000253
// (remove) Token: 0x06001787 RID: 6023 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x14000002")]
public event ValidationEventHandler ValidationEventHandler
{
[Token(Token = "0x6001786")]
[Address(RVA = "0x579DD0", Offset = "0x578DD0", VA = "0x180579DD0")]
add
{
}
[Token(Token = "0x6001787")]
[Address(RVA = "0x579F80", Offset = "0x578F80", VA = "0x180579F80")]
remove
{
}
}
/// <summary>Adds an XML Schema Definition Language (XSD) schema to the set of schemas used for validation.</summary>
/// <param name="schema">An <see cref="T:System.Xml.Schema.XmlSchema" /> object to add to the set of schemas used for validation.</param>
/// <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.Schema.XmlSchema" /> parameter specified is <see langword="null" />.</exception>
/// <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">The target namespace of the <see cref="T:System.Xml.Schema.XmlSchema" /> parameter matches that of any element or attribute already encountered by the <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> object.</exception>
/// <exception cref="T:System.Xml.Schema.XmlSchemaException">The <see cref="T:System.Xml.Schema.XmlSchema" /> parameter is invalid.</exception>
// Token: 0x06001788 RID: 6024 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001788")]
[Address(RVA = "0x56E600", Offset = "0x56D600", VA = "0x18056E600")]
public void AddSchema(XmlSchema schema)
{
}
/// <summary>Initializes the state of the <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> object.</summary>
/// <exception cref="T:System.InvalidOperationException">Calling the <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.Initialize" /> method is valid immediately after the construction of an <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> object or after a call to <see cref="M:System.Xml.Schema.XmlSchemaValidator.EndValidation" /> only.</exception>
// Token: 0x06001789 RID: 6025 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001789")]
[Address(RVA = "0x574080", Offset = "0x573080", VA = "0x180574080")]
public void Initialize()
{
}
/// <summary>Initializes the state of the <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> object using the <see cref="T:System.Xml.Schema.XmlSchemaObject" /> specified for partial validation.</summary>
/// <param name="partialValidationType">An <see cref="T:System.Xml.Schema.XmlSchemaElement" />, <see cref="T:System.Xml.Schema.XmlSchemaAttribute" />, or <see cref="T:System.Xml.Schema.XmlSchemaType" /> object used to initialize the validation context of the <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> object for partial validation.</param>
/// <exception cref="T:System.InvalidOperationException">Calling the <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.Initialize" /> method is valid immediately after the construction of an <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> object or after a call to <see cref="M:System.Xml.Schema.XmlSchemaValidator.EndValidation" /> only.</exception>
/// <exception cref="T:System.ArgumentException">The <see cref="T:System.Xml.Schema.XmlSchemaObject" /> parameter is not an <see cref="T:System.Xml.Schema.XmlSchemaElement" />, <see cref="T:System.Xml.Schema.XmlSchemaAttribute" />, or <see cref="T:System.Xml.Schema.XmlSchemaType" /> object.</exception>
/// <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.Schema.XmlSchemaObject" /> parameter cannot be <see langword="null" />.</exception>
// Token: 0x0600178A RID: 6026 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600178A")]
[Address(RVA = "0x573DC0", Offset = "0x572DC0", VA = "0x180573DC0")]
public void Initialize(XmlSchemaObject partialValidationType)
{
}
/// <summary>Validates the element in the current context with the xsi:Type, xsi:Nil, xsi:SchemaLocation, and xsi:NoNamespaceSchemaLocation attribute values specified.</summary>
/// <param name="localName">The local name of the element to validate.</param>
/// <param name="namespaceUri">The namespace URI of the element to validate.</param>
/// <param name="schemaInfo">An <see cref="T:System.Xml.Schema.XmlSchemaInfo" /> object whose properties are set on successful validation of the element's name. This parameter can be <see langword="null" />.</param>
/// <param name="xsiType">The xsi:Type attribute value of the element. This parameter can be <see langword="null" />.</param>
/// <param name="xsiNil">The xsi:Nil attribute value of the element. This parameter can be <see langword="null" />.</param>
/// <param name="xsiSchemaLocation">The xsi:SchemaLocation attribute value of the element. This parameter can be <see langword="null" />.</param>
/// <param name="xsiNoNamespaceSchemaLocation">The xsi:NoNamespaceSchemaLocation attribute value of the element. This parameter can be <see langword="null" />.</param>
/// <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">The element's name is not valid in the current context.</exception>
/// <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateElement" /> method was not called in the correct sequence. For example, the <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateElement" /> method is called after calling <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateAttribute" />.</exception>
// Token: 0x0600178B RID: 6027 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600178B")]
[Address(RVA = "0x578940", Offset = "0x577940", VA = "0x180578940")]
public void ValidateElement(string localName, string namespaceUri, XmlSchemaInfo schemaInfo, string xsiType, string xsiNil, string xsiSchemaLocation, string xsiNoNamespaceSchemaLocation)
{
}
/// <summary>Validates the attribute name, namespace URI, and value in the current element context.</summary>
/// <param name="localName">The local name of the attribute to validate.</param>
/// <param name="namespaceUri">The namespace URI of the attribute to validate.</param>
/// <param name="attributeValue">An <see cref="T:System.Xml.Schema.XmlValueGetter" /><see langword="delegate" /> used to pass the attribute's value as a Common Language Runtime (CLR) type compatible with the XML Schema Definition Language (XSD) type of the attribute.</param>
/// <param name="schemaInfo">An <see cref="T:System.Xml.Schema.XmlSchemaInfo" /> object whose properties are set on successful validation of the attribute. This parameter and can be <see langword="null" />.</param>
/// <returns>The validated attribute's value.</returns>
/// <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">The attribute is not valid in the current element context.</exception>
/// <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateAttribute" /> method was not called in the correct sequence. For example, calling <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateAttribute" /> after calling <see cref="M:System.Xml.Schema.XmlSchemaValidator.ValidateEndOfAttributes(System.Xml.Schema.XmlSchemaInfo)" />.</exception>
/// <exception cref="T:System.ArgumentNullException">One or more of the parameters specified are <see langword="null" />.</exception>
// Token: 0x0600178C RID: 6028 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600178C")]
[Address(RVA = "0x577B00", Offset = "0x576B00", VA = "0x180577B00")]
public object ValidateAttribute(string localName, string namespaceUri, XmlValueGetter attributeValue, XmlSchemaInfo schemaInfo)
{
return null;
}
// Token: 0x0600178D RID: 6029 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600178D")]
[Address(RVA = "0x577BB0", Offset = "0x576BB0", VA = "0x180577BB0")]
private object ValidateAttribute(string lName, string ns, XmlValueGetter attributeValueGetter, string attributeStringValue, XmlSchemaInfo schemaInfo)
{
return null;
}
/// <summary>Verifies whether all the required attributes in the element context are present and prepares the <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> object to validate the child content of the element.</summary>
/// <param name="schemaInfo">An <see cref="T:System.Xml.Schema.XmlSchemaInfo" /> object whose properties are set on successful verification that all the required attributes in the element context are present. This parameter can be <see langword="null" />.</param>
/// <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">One or more of the required attributes in the current element context were not found.</exception>
/// <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Xml.Schema.XmlSchemaValidator.ValidateEndOfAttributes(System.Xml.Schema.XmlSchemaInfo)" /> method was not called in the correct sequence. For example, calling <see cref="M:System.Xml.Schema.XmlSchemaValidator.ValidateEndOfAttributes(System.Xml.Schema.XmlSchemaInfo)" /> after calling <see cref="M:System.Xml.Schema.XmlSchemaValidator.SkipToEndElement(System.Xml.Schema.XmlSchemaInfo)" />.</exception>
/// <exception cref="T:System.ArgumentNullException">One or more of the parameters specified are <see langword="null" />.</exception>
// Token: 0x0600178E RID: 6030 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600178E")]
[Address(RVA = "0x578DF0", Offset = "0x577DF0", VA = "0x180578DF0")]
public void ValidateEndOfAttributes(XmlSchemaInfo schemaInfo)
{
}
/// <summary>Validates whether the text returned by the <see cref="T:System.Xml.Schema.XmlValueGetter" /> object specified is allowed in the current element context, and accumulates the text for validation if the current element has simple content.</summary>
/// <param name="elementValue">An <see cref="T:System.Xml.Schema.XmlValueGetter" /><see langword="delegate" /> used to pass the text value as a Common Language Runtime (CLR) type compatible with the XML Schema Definition Language (XSD) type of the attribute.</param>
/// <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">The text <see langword="string" /> specified is not allowed in the current element context.</exception>
/// <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateText" /> method was not called in the correct sequence. For example, the <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateText" /> method is called after calling <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateAttribute" />.</exception>
/// <exception cref="T:System.ArgumentNullException">The text <see langword="string" /> parameter cannot be <see langword="null" />.</exception>
// Token: 0x0600178F RID: 6031 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600178F")]
[Address(RVA = "0x579340", Offset = "0x578340", VA = "0x180579340")]
public void ValidateText(XmlValueGetter elementValue)
{
}
// Token: 0x06001790 RID: 6032 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001790")]
[Address(RVA = "0x578F30", Offset = "0x577F30", VA = "0x180578F30")]
private void ValidateText(string elementStringValue, XmlValueGetter elementValueGetter)
{
}
/// <summary>Validates whether the white space returned by the <see cref="T:System.Xml.Schema.XmlValueGetter" /> object specified is allowed in the current element context, and accumulates the white space for validation if the current element has simple content.</summary>
/// <param name="elementValue">An <see cref="T:System.Xml.Schema.XmlValueGetter" /><see langword="delegate" /> used to pass the white space value as a Common Language Runtime (CLR) type compatible with the XML Schema Definition Language (XSD) type of the attribute.</param>
/// <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">White space is not allowed in the current element context.</exception>
/// <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateWhitespace" /> method was not called in the correct sequence. For example, if the <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateWhitespace" /> method is called after calling <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateAttribute" />.</exception>
// Token: 0x06001791 RID: 6033 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001791")]
[Address(RVA = "0x5795C0", Offset = "0x5785C0", VA = "0x1805795C0")]
public void ValidateWhitespace(XmlValueGetter elementValue)
{
}
// Token: 0x06001792 RID: 6034 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001792")]
[Address(RVA = "0x5793C0", Offset = "0x5783C0", VA = "0x1805793C0")]
private void ValidateWhitespace(string elementStringValue, XmlValueGetter elementValueGetter)
{
}
/// <summary>Verifies if the text content of the element is valid according to its data type for elements with simple content, and verifies if the content of the current element is complete for elements with complex content.</summary>
/// <param name="schemaInfo">An <see cref="T:System.Xml.Schema.XmlSchemaInfo" /> object whose properties are set on successful validation of the element. This parameter can be <see langword="null" />.</param>
/// <returns>The parsed, typed text value of the element if the element has simple content.</returns>
/// <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">The element's content is not valid.</exception>
/// <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateEndElement" /> method was not called in the correct sequence. For example, if the <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateEndElement" /> method is called after calling <see cref="M:System.Xml.Schema.XmlSchemaValidator.SkipToEndElement(System.Xml.Schema.XmlSchemaInfo)" />.</exception>
// Token: 0x06001793 RID: 6035 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001793")]
[Address(RVA = "0x578DE0", Offset = "0x577DE0", VA = "0x180578DE0")]
public object ValidateEndElement(XmlSchemaInfo schemaInfo)
{
return null;
}
/// <summary>Skips validation of the current element content and prepares the <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> object to validate content in the parent element's context.</summary>
/// <param name="schemaInfo">An <see cref="T:System.Xml.Schema.XmlSchemaInfo" /> object whose properties are set if the current element content is successfully skipped. This parameter can be <see langword="null" />.</param>
/// <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Xml.Schema.XmlSchemaValidator.SkipToEndElement(System.Xml.Schema.XmlSchemaInfo)" /> method was not called in the correct sequence. For example, calling <see cref="M:System.Xml.Schema.XmlSchemaValidator.SkipToEndElement(System.Xml.Schema.XmlSchemaInfo)" /> after calling <see cref="M:System.Xml.Schema.XmlSchemaValidator.SkipToEndElement(System.Xml.Schema.XmlSchemaInfo)" />.</exception>
// Token: 0x06001794 RID: 6036 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001794")]
[Address(RVA = "0x577090", Offset = "0x576090", VA = "0x180577090")]
public void SkipToEndElement(XmlSchemaInfo schemaInfo)
{
}
/// <summary>Ends validation and checks identity constraints for the entire XML document.</summary>
/// <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">An identity constraint error was found in the XML document.</exception>
// Token: 0x06001795 RID: 6037 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001795")]
[Address(RVA = "0x572860", Offset = "0x571860", VA = "0x180572860")]
public void EndValidation()
{
}
// Token: 0x06001796 RID: 6038 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001796")]
[Address(RVA = "0x5735C0", Offset = "0x5725C0", VA = "0x1805735C0")]
internal void GetUnspecifiedDefaultAttributes(ArrayList defaultAttributes, bool createNodeData)
{
}
// Token: 0x170006B2 RID: 1714
// (get) Token: 0x06001797 RID: 6039 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170006B2")]
internal XmlSchemaSet SchemaSet
{
[Token(Token = "0x6001797")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
get
{
return null;
}
}
// Token: 0x170006B3 RID: 1715
// (get) Token: 0x06001798 RID: 6040 RVA: 0x00009DE0 File Offset: 0x00007FE0
[Token(Token = "0x170006B3")]
internal XmlSchemaValidationFlags ValidationFlags
{
[Token(Token = "0x6001798")]
[Address(RVA = "0x411540", Offset = "0x410540", VA = "0x180411540")]
get
{
return XmlSchemaValidationFlags.None;
}
}
// Token: 0x170006B4 RID: 1716
// (get) Token: 0x06001799 RID: 6041 RVA: 0x00009DF8 File Offset: 0x00007FF8
[Token(Token = "0x170006B4")]
internal XmlSchemaContentType CurrentContentType
{
[Token(Token = "0x6001799")]
[Address(RVA = "0x579E60", Offset = "0x578E60", VA = "0x180579E60")]
get
{
return XmlSchemaContentType.TextOnly;
}
}
// Token: 0x0600179A RID: 6042 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600179A")]
[Address(RVA = "0x577080", Offset = "0x576080", VA = "0x180577080")]
internal void SetDtdSchemaInfo(IDtdInfo dtdSchemaInfo)
{
}
// Token: 0x170006B5 RID: 1717
// (get) Token: 0x0600179B RID: 6043 RVA: 0x00009E10 File Offset: 0x00008010
[Token(Token = "0x170006B5")]
private bool StrictlyAssessed
{
[Token(Token = "0x600179B")]
[Address(RVA = "0x579F40", Offset = "0x578F40", VA = "0x180579F40")]
get
{
return default(bool);
}
}
// Token: 0x170006B6 RID: 1718
// (get) Token: 0x0600179C RID: 6044 RVA: 0x00009E28 File Offset: 0x00008028
[Token(Token = "0x170006B6")]
private bool HasSchema
{
[Token(Token = "0x600179C")]
[Address(RVA = "0x579EC0", Offset = "0x578EC0", VA = "0x180579EC0")]
get
{
return default(bool);
}
}
// Token: 0x0600179D RID: 6045 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600179D")]
[Address(RVA = "0x572EF0", Offset = "0x571EF0", VA = "0x180572EF0")]
internal string GetConcatenatedValue()
{
return null;
}
// Token: 0x0600179E RID: 6046 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600179E")]
[Address(RVA = "0x574200", Offset = "0x573200", VA = "0x180574200")]
private object InternalValidateEndElement(XmlSchemaInfo schemaInfo, object typedValue)
{
return null;
}
// Token: 0x0600179F RID: 6047 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600179F")]
[Address(RVA = "0x575AB0", Offset = "0x574AB0", VA = "0x180575AB0")]
private void ProcessSchemaLocations(string xsiSchemaLocation, string xsiNoNamespaceSchemaLocation)
{
}
// Token: 0x060017A0 RID: 6048 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017A0")]
[Address(RVA = "0x5784E0", Offset = "0x5774E0", VA = "0x1805784E0")]
private object ValidateElementContext(XmlQualifiedName elementName, out bool invalidElementInContext)
{
return null;
}
// Token: 0x060017A1 RID: 6049 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017A1")]
[Address(RVA = "0x5732F0", Offset = "0x5722F0", VA = "0x1805732F0")]
private XmlSchemaElement GetSubstitutionGroupHead(XmlQualifiedName member)
{
return null;
}
// Token: 0x060017A2 RID: 6050 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017A2")]
[Address(RVA = "0x577480", Offset = "0x576480", VA = "0x180577480")]
private object ValidateAtomicValue(string stringValue, out XmlSchemaSimpleType memberType)
{
return null;
}
// Token: 0x060017A3 RID: 6051 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017A3")]
[Address(RVA = "0x577740", Offset = "0x576740", VA = "0x180577740")]
private object ValidateAtomicValue(object parsedValue, out XmlSchemaSimpleType memberType)
{
return null;
}
// Token: 0x060017A4 RID: 6052 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017A4")]
[Address(RVA = "0x573550", Offset = "0x572550", VA = "0x180573550")]
private string GetTypeName(SchemaDeclBase decl)
{
return null;
}
// Token: 0x060017A5 RID: 6053 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017A5")]
[Address(RVA = "0x576490", Offset = "0x575490", VA = "0x180576490")]
private void SaveTextValue(object value)
{
}
// Token: 0x060017A6 RID: 6054 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017A6")]
[Address(RVA = "0x576130", Offset = "0x575130", VA = "0x180576130")]
private void Push(XmlQualifiedName elementName)
{
}
// Token: 0x060017A7 RID: 6055 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017A7")]
[Address(RVA = "0x574C90", Offset = "0x573C90", VA = "0x180574C90")]
private void Pop()
{
}
// Token: 0x060017A8 RID: 6056 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017A8")]
[Address(RVA = "0x572C60", Offset = "0x571C60", VA = "0x180572C60")]
private SchemaElementDecl FastGetElementDecl(XmlQualifiedName elementName, object particle)
{
return null;
}
// Token: 0x060017A9 RID: 6057 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017A9")]
[Address(RVA = "0x56FFE0", Offset = "0x56EFE0", VA = "0x18056FFE0")]
private SchemaElementDecl CheckXsiTypeAndNil(SchemaElementDecl elementDecl, string xsiType, string xsiNil, ref bool declFound)
{
return null;
}
// Token: 0x060017AA RID: 6058 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017AA")]
[Address(RVA = "0x5772B0", Offset = "0x5762B0", VA = "0x1805772B0")]
private void ThrowDeclNotFoundWarningOrError(bool declFound)
{
}
// Token: 0x060017AB RID: 6059 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017AB")]
[Address(RVA = "0x56F2B0", Offset = "0x56E2B0", VA = "0x18056F2B0")]
private void CheckElementProperties()
{
}
// Token: 0x060017AC RID: 6060 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017AC")]
[Address(RVA = "0x578ED0", Offset = "0x577ED0", VA = "0x180578ED0")]
private void ValidateStartElementIdentityConstraints()
{
}
// Token: 0x060017AD RID: 6061 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017AD")]
[Address(RVA = "0x56F790", Offset = "0x56E790", VA = "0x18056F790")]
private SchemaAttDef CheckIsXmlAttribute(XmlQualifiedName attQName)
{
return null;
}
// Token: 0x060017AE RID: 6062 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017AE")]
[Address(RVA = "0x56EA20", Offset = "0x56DA20", VA = "0x18056EA20")]
private void AddXmlNamespaceSchema()
{
}
// Token: 0x060017AF RID: 6063 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017AF")]
[Address(RVA = "0x56F8D0", Offset = "0x56E8D0", VA = "0x18056F8D0")]
internal object CheckMixedValueConstraint(string elementValue)
{
return null;
}
// Token: 0x060017B0 RID: 6064 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017B0")]
[Address(RVA = "0x574850", Offset = "0x573850", VA = "0x180574850")]
private void LoadSchema(string uri, string url)
{
}
// Token: 0x060017B1 RID: 6065 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017B1")]
[Address(RVA = "0x576330", Offset = "0x575330", VA = "0x180576330")]
internal void RecompileSchemaSet()
{
}
// Token: 0x060017B2 RID: 6066 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017B2")]
[Address(RVA = "0x575E80", Offset = "0x574E80", VA = "0x180575E80")]
private void ProcessTokenizedType(XmlTokenizedType ttype, string name, bool attrValue)
{
}
// Token: 0x060017B3 RID: 6067 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017B3")]
[Address(RVA = "0x56EFA0", Offset = "0x56DFA0", VA = "0x18056EFA0")]
private object CheckAttributeValue(object value, SchemaAttDef attdef)
{
return null;
}
// Token: 0x060017B4 RID: 6068 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017B4")]
[Address(RVA = "0x56F360", Offset = "0x56E360", VA = "0x18056F360")]
private object CheckElementValue(string stringValue)
{
return null;
}
// Token: 0x060017B5 RID: 6069 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017B5")]
[Address(RVA = "0x56FE60", Offset = "0x56EE60", VA = "0x18056FE60")]
private void CheckTokenizedTypes(XmlSchemaDatatype dtype, object typedValue, bool attrValue)
{
}
// Token: 0x060017B6 RID: 6070 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017B6")]
[Address(RVA = "0x572ED0", Offset = "0x571ED0", VA = "0x180572ED0")]
private object FindId(string name)
{
return null;
}
// Token: 0x060017B7 RID: 6071 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017B7")]
[Address(RVA = "0x56F680", Offset = "0x56E680", VA = "0x18056F680")]
private void CheckForwardRefs()
{
}
// Token: 0x170006B7 RID: 1719
// (get) Token: 0x060017B8 RID: 6072 RVA: 0x00009E40 File Offset: 0x00008040
[Token(Token = "0x170006B7")]
private bool HasIdentityConstraints
{
[Token(Token = "0x60017B8")]
[Address(RVA = "0x579EA0", Offset = "0x578EA0", VA = "0x180579EA0")]
get
{
return default(bool);
}
}
// Token: 0x170006B8 RID: 1720
// (get) Token: 0x060017B9 RID: 6073 RVA: 0x00009E58 File Offset: 0x00008058
[Token(Token = "0x170006B8")]
internal bool ProcessIdentityConstraints
{
[Token(Token = "0x60017B9")]
[Address(RVA = "0x579F10", Offset = "0x578F10", VA = "0x180579F10")]
get
{
return default(bool);
}
}
// Token: 0x170006B9 RID: 1721
// (get) Token: 0x060017BA RID: 6074 RVA: 0x00009E70 File Offset: 0x00008070
[Token(Token = "0x170006B9")]
internal bool ReportValidationWarnings
{
[Token(Token = "0x60017BA")]
[Address(RVA = "0x579F30", Offset = "0x578F30", VA = "0x180579F30")]
get
{
return default(bool);
}
}
// Token: 0x170006BA RID: 1722
// (get) Token: 0x060017BB RID: 6075 RVA: 0x00009E88 File Offset: 0x00008088
[Token(Token = "0x170006BA")]
internal bool ProcessSchemaHints
{
[Token(Token = "0x60017BB")]
[Address(RVA = "0x579F20", Offset = "0x578F20", VA = "0x180579F20")]
get
{
return default(bool);
}
}
// Token: 0x060017BC RID: 6076 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017BC")]
[Address(RVA = "0x56FB70", Offset = "0x56EB70", VA = "0x18056FB70")]
private void CheckStateTransition(ValidatorState toState, string methodName)
{
}
// Token: 0x060017BD RID: 6077 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017BD")]
[Address(RVA = "0x5706D0", Offset = "0x56F6D0", VA = "0x1805706D0")]
private void ClearPSVI()
{
}
// Token: 0x060017BE RID: 6078 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017BE")]
[Address(RVA = "0x56F9D0", Offset = "0x56E9D0", VA = "0x18056F9D0")]
private void CheckRequiredAttributes(SchemaElementDecl currentElementDecl)
{
}
// Token: 0x060017BF RID: 6079 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017BF")]
[Address(RVA = "0x5731A0", Offset = "0x5721A0", VA = "0x1805731A0")]
private XmlSchemaElement GetSchemaElement()
{
return null;
}
// Token: 0x060017C0 RID: 6080 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017C0")]
[Address(RVA = "0x572F20", Offset = "0x571F20", VA = "0x180572F20")]
internal string GetDefaultAttributePrefix(string attributeNS)
{
return null;
}
// Token: 0x060017C1 RID: 6081 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017C1")]
[Address(RVA = "0x56E0D0", Offset = "0x56D0D0", VA = "0x18056E0D0")]
private void AddIdentityConstraints()
{
}
// Token: 0x060017C2 RID: 6082 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017C2")]
[Address(RVA = "0x570D60", Offset = "0x56FD60", VA = "0x180570D60")]
private void ElementIdentityConstraints()
{
}
// Token: 0x060017C3 RID: 6083 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017C3")]
[Address(RVA = "0x56EAC0", Offset = "0x56DAC0", VA = "0x18056EAC0")]
private void AttributeIdentityConstraints(string name, string ns, object obj, string sobj, XmlSchemaDatatype datatype)
{
}
// Token: 0x060017C4 RID: 6084 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017C4")]
[Address(RVA = "0x571990", Offset = "0x570990", VA = "0x180571990")]
private void EndElementIdentityConstraints(object typedValue, string stringValue, XmlSchemaDatatype datatype)
{
}
// Token: 0x060017C5 RID: 6085 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017C5")]
[Address(RVA = "0x5710D0", Offset = "0x5700D0", VA = "0x1805710D0")]
internal static void ElementValidationError(XmlQualifiedName name, ValidationState context, ValidationEventHandler eventHandler, object sender, string sourceUri, int lineNo, int linePos, XmlSchemaSet schemaSet)
{
}
// Token: 0x060017C6 RID: 6086 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017C6")]
[Address(RVA = "0x570720", Offset = "0x56F720", VA = "0x180570720")]
internal static void CompleteValidationError(ValidationState context, ValidationEventHandler eventHandler, object sender, string sourceUri, int lineNo, int linePos, XmlSchemaSet schemaSet)
{
}
// Token: 0x060017C7 RID: 6087 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017C7")]
[Address(RVA = "0x574DC0", Offset = "0x573DC0", VA = "0x180574DC0")]
internal static string PrintExpectedElements(ArrayList expected, bool getParticles)
{
return null;
}
// Token: 0x060017C8 RID: 6088 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017C8")]
[Address(RVA = "0x575830", Offset = "0x574830", VA = "0x180575830")]
private static string PrintNames(ArrayList expected)
{
return null;
}
// Token: 0x060017C9 RID: 6089 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017C9")]
[Address(RVA = "0x575290", Offset = "0x574290", VA = "0x180575290")]
private static void PrintNamesWithNS(ArrayList expected, StringBuilder builder)
{
}
// Token: 0x060017CA RID: 6090 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017CA")]
[Address(RVA = "0x572A60", Offset = "0x571A60", VA = "0x180572A60")]
private static void EnumerateAny(StringBuilder builder, string namespaces)
{
}
// Token: 0x060017CB RID: 6091 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017CB")]
[Address(RVA = "0x5762C0", Offset = "0x5752C0", VA = "0x1805762C0")]
internal static string QNameString(string localName, string ns)
{
return null;
}
// Token: 0x060017CC RID: 6092 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017CC")]
[Address(RVA = "0x56EDB0", Offset = "0x56DDB0", VA = "0x18056EDB0")]
internal static string BuildElementName(XmlQualifiedName qname)
{
return null;
}
// Token: 0x060017CD RID: 6093 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017CD")]
[Address(RVA = "0x56EE30", Offset = "0x56DE30", VA = "0x18056EE30")]
internal static string BuildElementName(string localName, string ns)
{
return null;
}
// Token: 0x060017CE RID: 6094 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017CE")]
[Address(RVA = "0x5759A0", Offset = "0x5749A0", VA = "0x1805759A0")]
private void ProcessEntity(string name)
{
}
// Token: 0x060017CF RID: 6095 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017CF")]
[Address(RVA = "0x576BF0", Offset = "0x575BF0", VA = "0x180576BF0")]
private void SendValidationEvent(string code)
{
}
// Token: 0x060017D0 RID: 6096 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017D0")]
[Address(RVA = "0x576DD0", Offset = "0x575DD0", VA = "0x180576DD0")]
private void SendValidationEvent(string code, string[] args)
{
}
// Token: 0x060017D1 RID: 6097 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017D1")]
[Address(RVA = "0x5769A0", Offset = "0x5759A0", VA = "0x1805769A0")]
private void SendValidationEvent(string code, string arg)
{
}
// Token: 0x060017D2 RID: 6098 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017D2")]
[Address(RVA = "0x576ED0", Offset = "0x575ED0", VA = "0x180576ED0")]
private void SendValidationEvent(string code, string arg1, string arg2)
{
}
// Token: 0x060017D3 RID: 6099 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017D3")]
[Address(RVA = "0x576760", Offset = "0x575760", VA = "0x180576760")]
private void SendValidationEvent(string code, string[] args, Exception innerException, XmlSeverityType severity)
{
}
// Token: 0x060017D4 RID: 6100 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017D4")]
[Address(RVA = "0x576C50", Offset = "0x575C50", VA = "0x180576C50")]
private void SendValidationEvent(string code, string[] args, Exception innerException)
{
}
// Token: 0x060017D5 RID: 6101 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017D5")]
[Address(RVA = "0x5766A0", Offset = "0x5756A0", VA = "0x1805766A0")]
private void SendValidationEvent(XmlSchemaValidationException e)
{
}
// Token: 0x060017D6 RID: 6102 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017D6")]
[Address(RVA = "0x576A90", Offset = "0x575A90", VA = "0x180576A90")]
private void SendValidationEvent(XmlSchemaException e)
{
}
// Token: 0x060017D7 RID: 6103 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017D7")]
[Address(RVA = "0x5764E0", Offset = "0x5754E0", VA = "0x1805764E0")]
private void SendValidationEvent(string code, string msg, XmlSeverityType severity)
{
}
// Token: 0x060017D8 RID: 6104 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017D8")]
[Address(RVA = "0x5768A0", Offset = "0x5758A0", VA = "0x1805768A0")]
private void SendValidationEvent(XmlSchemaValidationException e, XmlSeverityType severity)
{
}
// Token: 0x060017D9 RID: 6105 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017D9")]
[Address(RVA = "0x5765F0", Offset = "0x5755F0", VA = "0x1805765F0")]
internal static void SendValidationEvent(ValidationEventHandler eventHandler, object sender, XmlSchemaValidationException e, XmlSeverityType severity)
{
}
// Token: 0x04000CBF RID: 3263
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000CBF")]
private XmlSchemaSet schemaSet;
// Token: 0x04000CC0 RID: 3264
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000CC0")]
private XmlSchemaValidationFlags validationFlags;
// Token: 0x04000CC1 RID: 3265
[FieldOffset(Offset = "0x1C")]
[Token(Token = "0x4000CC1")]
private int startIDConstraint;
// Token: 0x04000CC2 RID: 3266
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000CC2")]
private bool isRoot;
// Token: 0x04000CC3 RID: 3267
[FieldOffset(Offset = "0x21")]
[Token(Token = "0x4000CC3")]
private bool rootHasSchema;
// Token: 0x04000CC4 RID: 3268
[FieldOffset(Offset = "0x22")]
[Token(Token = "0x4000CC4")]
private bool attrValid;
// Token: 0x04000CC5 RID: 3269
[FieldOffset(Offset = "0x23")]
[Token(Token = "0x4000CC5")]
private bool checkEntity;
// Token: 0x04000CC6 RID: 3270
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x4000CC6")]
private SchemaInfo compiledSchemaInfo;
// Token: 0x04000CC7 RID: 3271
[FieldOffset(Offset = "0x30")]
[Token(Token = "0x4000CC7")]
private IDtdInfo dtdSchemaInfo;
// Token: 0x04000CC8 RID: 3272
[FieldOffset(Offset = "0x38")]
[Token(Token = "0x4000CC8")]
private Hashtable validatedNamespaces;
// Token: 0x04000CC9 RID: 3273
[FieldOffset(Offset = "0x40")]
[Token(Token = "0x4000CC9")]
private HWStack validationStack;
// Token: 0x04000CCA RID: 3274
[FieldOffset(Offset = "0x48")]
[Token(Token = "0x4000CCA")]
private ValidationState context;
// Token: 0x04000CCB RID: 3275
[FieldOffset(Offset = "0x50")]
[Token(Token = "0x4000CCB")]
private ValidatorState currentState;
// Token: 0x04000CCC RID: 3276
[FieldOffset(Offset = "0x58")]
[Token(Token = "0x4000CCC")]
private Hashtable attPresence;
// Token: 0x04000CCD RID: 3277
[FieldOffset(Offset = "0x60")]
[Token(Token = "0x4000CCD")]
private SchemaAttDef wildID;
// Token: 0x04000CCE RID: 3278
[FieldOffset(Offset = "0x68")]
[Token(Token = "0x4000CCE")]
private Hashtable IDs;
// Token: 0x04000CCF RID: 3279
[FieldOffset(Offset = "0x70")]
[Token(Token = "0x4000CCF")]
private IdRefNode idRefListHead;
// Token: 0x04000CD0 RID: 3280
[FieldOffset(Offset = "0x78")]
[Token(Token = "0x4000CD0")]
private XmlQualifiedName contextQName;
// Token: 0x04000CD1 RID: 3281
[FieldOffset(Offset = "0x80")]
[Token(Token = "0x4000CD1")]
private string NsXs;
// Token: 0x04000CD2 RID: 3282
[FieldOffset(Offset = "0x88")]
[Token(Token = "0x4000CD2")]
private string NsXsi;
// Token: 0x04000CD3 RID: 3283
[FieldOffset(Offset = "0x90")]
[Token(Token = "0x4000CD3")]
private string NsXmlNs;
// Token: 0x04000CD4 RID: 3284
[FieldOffset(Offset = "0x98")]
[Token(Token = "0x4000CD4")]
private string NsXml;
// Token: 0x04000CD5 RID: 3285
[FieldOffset(Offset = "0xA0")]
[Token(Token = "0x4000CD5")]
private XmlSchemaObject partialValidationType;
// Token: 0x04000CD6 RID: 3286
[FieldOffset(Offset = "0xA8")]
[Token(Token = "0x4000CD6")]
private StringBuilder textValue;
// Token: 0x04000CD7 RID: 3287
[FieldOffset(Offset = "0xB0")]
[Token(Token = "0x4000CD7")]
private ValidationEventHandler eventHandler;
// Token: 0x04000CD8 RID: 3288
[FieldOffset(Offset = "0xB8")]
[Token(Token = "0x4000CD8")]
private object validationEventSender;
// Token: 0x04000CD9 RID: 3289
[FieldOffset(Offset = "0xC0")]
[Token(Token = "0x4000CD9")]
private XmlNameTable nameTable;
// Token: 0x04000CDA RID: 3290
[FieldOffset(Offset = "0xC8")]
[Token(Token = "0x4000CDA")]
private IXmlLineInfo positionInfo;
// Token: 0x04000CDB RID: 3291
[FieldOffset(Offset = "0xD0")]
[Token(Token = "0x4000CDB")]
private IXmlLineInfo dummyPositionInfo;
// Token: 0x04000CDC RID: 3292
[FieldOffset(Offset = "0xD8")]
[Token(Token = "0x4000CDC")]
private XmlResolver xmlResolver;
// Token: 0x04000CDD RID: 3293
[FieldOffset(Offset = "0xE0")]
[Token(Token = "0x4000CDD")]
private Uri sourceUri;
// Token: 0x04000CDE RID: 3294
[FieldOffset(Offset = "0xE8")]
[Token(Token = "0x4000CDE")]
private string sourceUriString;
// Token: 0x04000CDF RID: 3295
[FieldOffset(Offset = "0xF0")]
[Token(Token = "0x4000CDF")]
private IXmlNamespaceResolver nsResolver;
// Token: 0x04000CE0 RID: 3296
[FieldOffset(Offset = "0xF8")]
[Token(Token = "0x4000CE0")]
private XmlSchemaContentProcessing processContents;
// Token: 0x04000CE1 RID: 3297
[FieldOffset(Offset = "0x100")]
[Token(Token = "0x4000CE1")]
private string xsiTypeString;
// Token: 0x04000CE2 RID: 3298
[FieldOffset(Offset = "0x108")]
[Token(Token = "0x4000CE2")]
private string xsiNilString;
// Token: 0x04000CE3 RID: 3299
[FieldOffset(Offset = "0x110")]
[Token(Token = "0x4000CE3")]
private string xsiSchemaLocationString;
// Token: 0x04000CE4 RID: 3300
[FieldOffset(Offset = "0x118")]
[Token(Token = "0x4000CE4")]
private string xsiNoNamespaceSchemaLocationString;
// Token: 0x04000CE5 RID: 3301
[Token(Token = "0x4000CE5")]
private static readonly XmlSchemaDatatype dtQName;
// Token: 0x04000CE6 RID: 3302
[Token(Token = "0x4000CE6")]
private static readonly XmlSchemaDatatype dtCDATA;
// Token: 0x04000CE7 RID: 3303
[Token(Token = "0x4000CE7")]
private static readonly XmlSchemaDatatype dtStringArray;
// Token: 0x04000CE8 RID: 3304
[Token(Token = "0x4000CE8")]
private static XmlSchemaParticle[] EmptyParticleArray;
// Token: 0x04000CE9 RID: 3305
[Token(Token = "0x4000CE9")]
private static XmlSchemaAttribute[] EmptyAttributeArray;
// Token: 0x04000CEA RID: 3306
[FieldOffset(Offset = "0x120")]
[Token(Token = "0x4000CEA")]
private XmlCharType xmlCharType;
// Token: 0x04000CEB RID: 3307
[Token(Token = "0x4000CEB")]
internal static bool[,] ValidStates;
// Token: 0x04000CEC RID: 3308
[Token(Token = "0x4000CEC")]
private static string[] MethodNames;
}
}