Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

60 lines
2.1 KiB
C#

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: 0x0200010B RID: 267
[Token(Token = "0x200010B")]
public class XmlSchemaAnyAttribute : XmlSchemaAnnotated
{
/// <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: 0x170002F5 RID: 757
// (set) Token: 0x0600084D RID: 2125 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170002F5")]
[XmlAttribute("processContents")]
[DefaultValue(null)]
public XmlSchemaContentProcessing ProcessContents
{
[Token(Token = "0x600084D")]
[Address(RVA = "0x41F740", Offset = "0x41E540", VA = "0x18041F740")]
set
{
}
}
// Token: 0x0600084E RID: 2126 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600084E")]
[Address(RVA = "0x5CF090", Offset = "0x5CDE90", VA = "0x1805CF090")]
internal void BuildNamespaceList(string targetNamespace)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaAnyAttribute" /> class.</summary>
// Token: 0x0600084F RID: 2127 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600084F")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
public XmlSchemaAnyAttribute()
{
}
// Token: 0x04000408 RID: 1032
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000408")]
private string ns;
// Token: 0x04000409 RID: 1033
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000409")]
private XmlSchemaContentProcessing processContents;
// Token: 0x0400040A RID: 1034
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x400040A")]
private NamespaceList namespaceList;
}
}