You've already forked linux-packaging-mono
Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
28
external/referencesource/System.Xml/System/Xml/Schema/XmlSchemaCompilationSettings.cs
vendored
Normal file
28
external/referencesource/System.Xml/System/Xml/Schema/XmlSchemaCompilationSettings.cs
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <copyright file="XmlSchemaDerivationMethod.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
// <owner current="true" primary="true">[....]</owner>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace System.Xml.Schema {
|
||||
|
||||
public sealed class XmlSchemaCompilationSettings {
|
||||
|
||||
bool enableUpaCheck;
|
||||
|
||||
public XmlSchemaCompilationSettings() {
|
||||
enableUpaCheck = true;
|
||||
}
|
||||
|
||||
public bool EnableUpaCheck {
|
||||
get {
|
||||
return enableUpaCheck;
|
||||
}
|
||||
set {
|
||||
enableUpaCheck = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user