oh dear
This commit is contained in:
@@ -0,0 +1,135 @@
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.Xml.Serialization;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Xml.Schema
|
||||
{
|
||||
/// <summary>Represents the <see langword="complexType" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class defines a complex type that determines the set of attributes and content of an element.</summary>
|
||||
// Token: 0x0200010F RID: 271
|
||||
[Token(Token = "0x200010F")]
|
||||
public class XmlSchemaComplexType : XmlSchemaType
|
||||
{
|
||||
// Token: 0x06000853 RID: 2131 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000853")]
|
||||
[Address(RVA = "0x5CF210", Offset = "0x5CE010", VA = "0x1805CF210")]
|
||||
private static XmlSchemaComplexType CreateAnyType(XmlSchemaContentProcessing processContents)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaComplexType" /> class.</summary>
|
||||
// Token: 0x06000854 RID: 2132 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000854")]
|
||||
[Address(RVA = "0x5CFBF0", Offset = "0x5CE9F0", VA = "0x1805CFBF0")]
|
||||
public XmlSchemaComplexType()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x170002F7 RID: 759
|
||||
// (get) Token: 0x06000855 RID: 2133 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002F7")]
|
||||
[XmlIgnore]
|
||||
internal static XmlSchemaComplexType AnyType
|
||||
{
|
||||
[Token(Token = "0x6000855")]
|
||||
[Address(RVA = "0x5CFCE0", Offset = "0x5CEAE0", VA = "0x1805CFCE0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170002F8 RID: 760
|
||||
// (get) Token: 0x06000856 RID: 2134 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002F8")]
|
||||
internal static ContentValidator AnyTypeContentValidator
|
||||
{
|
||||
[Token(Token = "0x6000856")]
|
||||
[Address(RVA = "0x5CFC60", Offset = "0x5CEA60", VA = "0x1805CFC60")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets information that determines if the complex type has a mixed content model (markup within the content).</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" />, if character data can appear between child elements of this complex type; otherwise, <see langword="false" />. The default is <see langword="false" />.Optional.</returns>
|
||||
// Token: 0x170002F9 RID: 761
|
||||
// (set) Token: 0x06000857 RID: 2135 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002F9")]
|
||||
[XmlAttribute("mixed")]
|
||||
[DefaultValue(false)]
|
||||
public override bool IsMixed
|
||||
{
|
||||
[Token(Token = "0x6000857")]
|
||||
[Address(RVA = "0x5CFD40", Offset = "0x5CEB40", VA = "0x1805CFD40", Slot = "7")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the particle that holds the post-compilation value of the <see cref="P:System.Xml.Schema.XmlSchemaComplexType.ContentType" /> particle.</summary>
|
||||
/// <returns>The particle for the content type. The post-compilation value of the <see cref="P:System.Xml.Schema.XmlSchemaComplexType.ContentType" /> particle.</returns>
|
||||
// Token: 0x170002FA RID: 762
|
||||
// (get) Token: 0x06000858 RID: 2136 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002FA")]
|
||||
[XmlIgnore]
|
||||
public XmlSchemaParticle ContentTypeParticle
|
||||
{
|
||||
[Token(Token = "0x6000858")]
|
||||
[Address(RVA = "0x3FA170", Offset = "0x3F8F70", VA = "0x1803FA170")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06000859 RID: 2137 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000859")]
|
||||
[Address(RVA = "0x46AA50", Offset = "0x469850", VA = "0x18046AA50")]
|
||||
internal void SetContentTypeParticle(XmlSchemaParticle value)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600085A RID: 2138 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600085A")]
|
||||
[Address(RVA = "0x46AB00", Offset = "0x469900", VA = "0x18046AB00")]
|
||||
internal void SetAttributeWildcard(XmlSchemaAnyAttribute value)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0400040D RID: 1037
|
||||
[FieldOffset(Offset = "0x40")]
|
||||
[Token(Token = "0x400040D")]
|
||||
private XmlSchemaDerivationMethod block;
|
||||
|
||||
// Token: 0x0400040E RID: 1038
|
||||
[FieldOffset(Offset = "0x48")]
|
||||
[Token(Token = "0x400040E")]
|
||||
private XmlSchemaParticle contentTypeParticle;
|
||||
|
||||
// Token: 0x0400040F RID: 1039
|
||||
[FieldOffset(Offset = "0x50")]
|
||||
[Token(Token = "0x400040F")]
|
||||
private XmlSchemaAnyAttribute attributeWildcard;
|
||||
|
||||
// Token: 0x04000410 RID: 1040
|
||||
[Token(Token = "0x4000410")]
|
||||
private static XmlSchemaComplexType anyTypeLax;
|
||||
|
||||
// Token: 0x04000411 RID: 1041
|
||||
[Token(Token = "0x4000411")]
|
||||
private static XmlSchemaComplexType anyTypeSkip;
|
||||
|
||||
// Token: 0x04000412 RID: 1042
|
||||
[Token(Token = "0x4000412")]
|
||||
private static XmlSchemaComplexType untypedAnyType;
|
||||
|
||||
// Token: 0x04000413 RID: 1043
|
||||
[FieldOffset(Offset = "0x58")]
|
||||
[Token(Token = "0x4000413")]
|
||||
private byte pvFlags;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user