Files
27Aug2021-Cpp2IL-Dump/System.Xml/System/Xml/Schema/XmlSchemaCompilationSettings.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

41 lines
1.6 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>Provides schema compilation options for the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> class This class cannot be inherited.</summary>
// Token: 0x0200021A RID: 538
[Token(Token = "0x200021A")]
public sealed class XmlSchemaCompilationSettings
{
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaCompilationSettings" /> class. </summary>
// Token: 0x06001566 RID: 5478 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001566")]
[Address(RVA = "0x82A900", Offset = "0x829900", VA = "0x18082A900")]
public XmlSchemaCompilationSettings()
{
}
/// <summary>Gets or sets a value indicating whether the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> should check for Unique Particle Attribution (UPA) violations.</summary>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> should check for Unique Particle Attribution (UPA) violations; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
// Token: 0x170005E2 RID: 1506
// (get) Token: 0x06001567 RID: 5479 RVA: 0x00009720 File Offset: 0x00007920
[Token(Token = "0x170005E2")]
public bool EnableUpaCheck
{
[Token(Token = "0x6001567")]
[Address(RVA = "0x4944B0", Offset = "0x4934B0", VA = "0x1804944B0")]
get
{
return default(bool);
}
}
// Token: 0x04000BC2 RID: 3010
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000BC2")]
private bool enableUpaCheck;
}
}