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/XmlSchemaObject.cs')
-rwxr-xr-xmcs/class/System.XML/System.Xml.Schema/XmlSchemaObject.cs75
1 files changed, 0 insertions, 75 deletions
diff --git a/mcs/class/System.XML/System.Xml.Schema/XmlSchemaObject.cs b/mcs/class/System.XML/System.Xml.Schema/XmlSchemaObject.cs
deleted file mode 100755
index 71e8b57faf4..00000000000
--- a/mcs/class/System.XML/System.Xml.Schema/XmlSchemaObject.cs
+++ /dev/null
@@ -1,75 +0,0 @@
-// Author: Dwivedi, Ajay kumar
-// Adwiv@Yahoo.com
-using System;
-using System.Collections;
-using System.Xml.Serialization;
-using System.Xml;
-
-namespace System.Xml.Schema
-{
- /// <summary>
- /// Summary description for XmlSchemaObject.
- /// </summary>
- public abstract class XmlSchemaObject
- {
- private int lineNumber;
- private int linePosition;
- private string sourceUri;
- private XmlSerializerNamespaces namespaces;
- internal ArrayList unhandledAttributeList ;
- internal bool isCompiled = false;
- internal int errorCount = 0;
-
- protected XmlSchemaObject()
- {
- namespaces = new XmlSerializerNamespaces();
- unhandledAttributeList = null;
- }
-
- [XmlIgnore]
- public int LineNumber
- {
- get{ return lineNumber; }
- set{ lineNumber = value; }
- }
- [XmlIgnore]
- public int LinePosition
- {
- get{ return linePosition; }
- set{ linePosition = value; }
- }
- [XmlIgnore]
- public string SourceUri
- {
- get{ return sourceUri; }
- set{ sourceUri = value; }
- }
-
- // Undocumented Property
- [XmlNamespaceDeclarations]
- public XmlSerializerNamespaces Namespaces
- {
- get{ return namespaces; }
- set{ namespaces = value; }
- }
-
- internal void error(ValidationEventHandler handle,string message)
- {
- errorCount++;
- ValidationHandler.RaiseValidationError(handle,this,message);
- }
- internal void warn(ValidationEventHandler handle,string message)
- {
- errorCount++;
- ValidationHandler.RaiseValidationWarning(handle,this,message);
- }
- internal static void error(ValidationEventHandler handle, string message, Exception innerException)
- {
- ValidationHandler.RaiseValidationError(handle,message, innerException);
- }
- internal static void warn(ValidationEventHandler handle, string message, Exception innerException)
- {
- ValidationHandler.RaiseValidationWarning(handle,message, innerException);
- }
- }
-} \ No newline at end of file