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/ValidationEventArgs.cs')
-rwxr-xr-xmcs/class/System.XML/System.Xml.Schema/ValidationEventArgs.cs38
1 files changed, 0 insertions, 38 deletions
diff --git a/mcs/class/System.XML/System.Xml.Schema/ValidationEventArgs.cs b/mcs/class/System.XML/System.Xml.Schema/ValidationEventArgs.cs
deleted file mode 100755
index df846514e1e..00000000000
--- a/mcs/class/System.XML/System.Xml.Schema/ValidationEventArgs.cs
+++ /dev/null
@@ -1,38 +0,0 @@
-// Author: Dwivedi, Ajay kumar
-// Adwiv@Yahoo.com
-using System;
-
-namespace System.Xml.Schema
-{
- /// <summary>
- /// Summary description for ValidationEventArgs.
- /// </summary>
- public sealed class ValidationEventArgs : EventArgs
- {
- private XmlSchemaException exception;
- private string message;
- private XmlSeverityType severity;
-
- private ValidationEventArgs()
- {}
-
- internal ValidationEventArgs(XmlSchemaException ex, string message, XmlSeverityType severity)
- {
- this.exception = ex;
- this.message = message;
- this.severity = severity;
- }
- public XmlSchemaException Exception
- {
- get{ return exception; }
- }
- public string Message
- {
- get{ return message; }
- }
- public XmlSeverityType Severity
- {
- get{ return severity; }
- }
- }
-}