This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,148 @@
using System;
using System.ComponentModel;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>Represents the World Wide Web Consortium (W3C) <see langword="anyAttribute" /> element.</summary>
// Token: 0x02000211 RID: 529
[Token(Token = "0x2000211")]
public class XmlSchemaAnyAttribute : XmlSchemaAnnotated
{
/// <summary>Gets or sets the namespaces containing the attributes that can be used.</summary>
/// <returns>Namespaces for attributes that are available for use. The default is <see langword="##any" />.Optional.</returns>
// Token: 0x170005B4 RID: 1460
// (set) Token: 0x06001502 RID: 5378 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170005B4")]
[XmlAttribute("namespace")]
public string Namespace
{
[Token(Token = "0x6001502")]
[Address(RVA = "0x55BCE0", Offset = "0x55ACE0", VA = "0x18055BCE0")]
set
{
}
}
/// <summary>Gets or sets information about how an application or XML processor should handle the validation of XML documents for the attributes specified by the <see langword="anyAttribute" /> element.</summary>
/// <returns>One of the <see cref="T:System.Xml.Schema.XmlSchemaContentProcessing" /> values. If no <see langword="processContents" /> attribute is specified, the default is <see langword="Strict" />.</returns>
// Token: 0x170005B5 RID: 1461
// (get) Token: 0x06001503 RID: 5379 RVA: 0x000095E8 File Offset: 0x000077E8
// (set) Token: 0x06001504 RID: 5380 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170005B5")]
[XmlAttribute("processContents")]
[DefaultValue(null)]
public XmlSchemaContentProcessing ProcessContents
{
[Token(Token = "0x6001503")]
[Address(RVA = "0x56DD20", Offset = "0x56CD20", VA = "0x18056DD20")]
get
{
return XmlSchemaContentProcessing.None;
}
[Token(Token = "0x6001504")]
[Address(RVA = "0x56DEE0", Offset = "0x56CEE0", VA = "0x18056DEE0")]
set
{
}
}
// Token: 0x170005B6 RID: 1462
// (get) Token: 0x06001505 RID: 5381 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005B6")]
[XmlIgnore]
internal NamespaceList NamespaceList
{
[Token(Token = "0x6001505")]
[Address(RVA = "0x417720", Offset = "0x416720", VA = "0x180417720")]
get
{
return null;
}
}
// Token: 0x170005B7 RID: 1463
// (get) Token: 0x06001506 RID: 5382 RVA: 0x00009600 File Offset: 0x00007800
[Token(Token = "0x170005B7")]
[XmlIgnore]
internal XmlSchemaContentProcessing ProcessContentsCorrect
{
[Token(Token = "0x6001506")]
[Address(RVA = "0x8290C0", Offset = "0x8280C0", VA = "0x1808290C0")]
get
{
return XmlSchemaContentProcessing.None;
}
}
// Token: 0x06001507 RID: 5383 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001507")]
[Address(RVA = "0x828E90", Offset = "0x827E90", VA = "0x180828E90")]
internal void BuildNamespaceList(string targetNamespace)
{
}
// Token: 0x06001508 RID: 5384 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001508")]
[Address(RVA = "0x828DF0", Offset = "0x827DF0", VA = "0x180828DF0")]
internal void BuildNamespaceListV1Compat(string targetNamespace)
{
}
// Token: 0x06001509 RID: 5385 RVA: 0x00009618 File Offset: 0x00007818
[Token(Token = "0x6001509")]
[Address(RVA = "0x828DB0", Offset = "0x827DB0", VA = "0x180828DB0")]
internal bool Allows(XmlQualifiedName qname)
{
return default(bool);
}
// Token: 0x0600150A RID: 5386 RVA: 0x00009630 File Offset: 0x00007830
[Token(Token = "0x600150A")]
[Address(RVA = "0x828FD0", Offset = "0x827FD0", VA = "0x180828FD0")]
internal static bool IsSubset(XmlSchemaAnyAttribute sub, XmlSchemaAnyAttribute super)
{
return default(bool);
}
// Token: 0x0600150B RID: 5387 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600150B")]
[Address(RVA = "0x828F10", Offset = "0x827F10", VA = "0x180828F10")]
internal static XmlSchemaAnyAttribute Intersection(XmlSchemaAnyAttribute o1, XmlSchemaAnyAttribute o2, bool v1Compat)
{
return null;
}
// Token: 0x0600150C RID: 5388 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600150C")]
[Address(RVA = "0x829000", Offset = "0x828000", VA = "0x180829000")]
internal static XmlSchemaAnyAttribute Union(XmlSchemaAnyAttribute o1, XmlSchemaAnyAttribute o2, bool v1Compat)
{
return null;
}
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaAnyAttribute" /> class.</summary>
// Token: 0x0600150D RID: 5389 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600150D")]
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
public XmlSchemaAnyAttribute()
{
}
// Token: 0x04000B9C RID: 2972
[FieldOffset(Offset = "0x50")]
[Token(Token = "0x4000B9C")]
private string ns;
// Token: 0x04000B9D RID: 2973
[FieldOffset(Offset = "0x58")]
[Token(Token = "0x4000B9D")]
private XmlSchemaContentProcessing processContents;
// Token: 0x04000B9E RID: 2974
[FieldOffset(Offset = "0x60")]
[Token(Token = "0x4000B9E")]
private NamespaceList namespaceList;
}
}