Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.XML/System.Xml.Schema/XmlSchemaDerivationMethod.cs')
-rwxr-xr-xmcs/class/System.XML/System.Xml.Schema/XmlSchemaDerivationMethod.cs31
1 files changed, 0 insertions, 31 deletions
diff --git a/mcs/class/System.XML/System.Xml.Schema/XmlSchemaDerivationMethod.cs b/mcs/class/System.XML/System.Xml.Schema/XmlSchemaDerivationMethod.cs
deleted file mode 100755
index fcd63c899fe..00000000000
--- a/mcs/class/System.XML/System.Xml.Schema/XmlSchemaDerivationMethod.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-// Author: Dwivedi, Ajay kumar
-// Adwiv@Yahoo.com
-using System;
-using System.Xml.Serialization;
-
-namespace System.Xml.Schema
-{
- /// <summary>
- /// Summary description for XmlSchemaDerivationMethod.
- /// </summary>
- [Flags]
- public enum XmlSchemaDerivationMethod
- {
- [XmlEnum("")]
- Empty = 0x00000000,
- [XmlEnum("substitution")]
- Substitution= 0x00000001,
- [XmlEnum("extension")]
- Extension = 0x00000002,
- [XmlEnum("restriction")]
- Restriction = 0x00000004,
- [XmlEnum("list")]
- List = 0x00000008,
- [XmlEnum("union")]
- Union = 0x00000010,
- [XmlEnum("#all")]
- All = 0x000000FF,
- [XmlIgnore]
- None = 0x00000100,
- }
-}