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/XmlSchemaUse.cs')
-rwxr-xr-xmcs/class/System.XML/System.Xml.Schema/XmlSchemaUse.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/mcs/class/System.XML/System.Xml.Schema/XmlSchemaUse.cs b/mcs/class/System.XML/System.Xml.Schema/XmlSchemaUse.cs
deleted file mode 100755
index 8015edd8ed2..00000000000
--- a/mcs/class/System.XML/System.Xml.Schema/XmlSchemaUse.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-// Author: Dwivedi, Ajay kumar
-// Adwiv@Yahoo.com
-using System;
-using System.Xml.Serialization;
-
-namespace System.Xml.Schema
-{
- /// <summary>
- /// Summary description for XmlSchemaUse.
- /// </summary>
- public enum XmlSchemaUse
- {
- [XmlIgnore]
- None = 0x00000000,
- [XmlEnum("optional")]
- Optional = 0x00000001,
- [XmlEnum("prohibited")]
- Prohibited = 0x00000002,
- [XmlEnum("required")]
- Required = 0x00000003,
- }
-}