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/XmlSchemaContentProcessing.cs')
-rwxr-xr-xmcs/class/System.XML/System.Xml.Schema/XmlSchemaContentProcessing.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/mcs/class/System.XML/System.Xml.Schema/XmlSchemaContentProcessing.cs b/mcs/class/System.XML/System.Xml.Schema/XmlSchemaContentProcessing.cs
deleted file mode 100755
index 2cd60231a03..00000000000
--- a/mcs/class/System.XML/System.Xml.Schema/XmlSchemaContentProcessing.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 XmlSchemaContentProcessing.
- /// </summary>
- public enum XmlSchemaContentProcessing
- {
- [XmlIgnore]
- None = 0,
- [XmlEnum("skip")]
- Skip = 1,
- [XmlEnum("lax")]
- Lax = 2,
- [XmlEnum("strict")]
- Strict = 3,
- }
-}