Handle more type conversion.
[mono.git] / mcs / class / System.XML / System.Xml.Schema / ValidationEventArgs.cs
index 372f1fea0a1516e009c71d73c7a93abbf7cdf62e..938232f0bae2dd2dc081a04cb0c1881ec19e52f8 100644 (file)
@@ -1,5 +1,5 @@
-// Author: Dwivedi, Ajay kumar\r
-//            Adwiv@Yahoo.com\r
+// Author: Dwivedi, Ajay kumar
+//            Adwiv@Yahoo.com
 
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-using System;\r
-\r
-namespace System.Xml.Schema\r
-{\r
-       /// <summary>\r
-       /// Summary description for ValidationEventArgs.\r
-       /// </summary>\r
-#if NET_2_0\r
-       public class ValidationEventArgs : EventArgs\r
-#else\r
-       public sealed class ValidationEventArgs : EventArgs\r
-#endif\r
-       {\r
-               private XmlSchemaException exception;\r
-               private string message;\r
-               private XmlSeverityType severity;\r
-\r
-               private ValidationEventArgs()\r
-               {}\r
-\r
-               internal ValidationEventArgs(XmlSchemaException ex, string message, XmlSeverityType severity)\r
-               {\r
-                       this.exception = ex;\r
-                       this.message = message;\r
-                       this.severity = severity;\r
-               }\r
-               public XmlSchemaException Exception \r
-               {\r
-                       get{ return exception; }\r
-               }\r
-               public string Message \r
-               {\r
-                       get{ return message; }\r
-               }\r
-               public XmlSeverityType Severity \r
-               {\r
-                       get{ return severity; }\r
-               }\r
-       }\r
-}\r
+using System;
+
+namespace System.Xml.Schema
+{
+       /// <summary>
+       /// Summary description for ValidationEventArgs.
+       /// </summary>
+#if NET_2_0
+       public class ValidationEventArgs : EventArgs
+#else
+       public sealed class ValidationEventArgs : EventArgs
+#endif
+       {
+               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; }
+               }
+       }
+}