mscorlib(4.0.0.0) API with additions
XmlSchemaCompilationSettings.cs
1 namespace System.Xml.Schema
2 {
4  public sealed class XmlSchemaCompilationSettings
5  {
6  private bool enableUpaCheck;
7 
11  public bool EnableUpaCheck
12  {
13  get
14  {
15  return enableUpaCheck;
16  }
17  set
18  {
19  enableUpaCheck = value;
20  }
21  }
22 
25  {
26  enableUpaCheck = true;
27  }
28  }
29 }
XmlSchemaCompilationSettings()
Initializes a new instance of the T:System.Xml.Schema.XmlSchemaCompilationSettings class.
Provides schema compilation options for the T:System.Xml.Schema.XmlSchemaSet class This class cannot ...
bool EnableUpaCheck
Gets or sets a value indicating whether the T:System.Xml.Schema.XmlSchemaSet should check for Unique ...