Updates referencesource to .NET 4.7
[mono.git] / mcs / class / referencesource / System.Xml / System / Xml / Schema / XmlSchemaCompilationSettings.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="XmlSchemaDerivationMethod.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>  
5 // <owner current="true" primary="true">Microsoft</owner>                                                              
6 //------------------------------------------------------------------------------
7
8 namespace System.Xml.Schema {
9
10     public sealed class XmlSchemaCompilationSettings {
11
12         bool enableUpaCheck;
13
14         public XmlSchemaCompilationSettings() {
15             enableUpaCheck = true;
16         }
17
18         public bool EnableUpaCheck {
19             get {
20                 return enableUpaCheck;
21             }
22             set {
23                 enableUpaCheck = value;
24             }
25         }
26     }
27     
28 }