* ProtocolImporter.cs: Use the binding name as class name for the
[mono.git] / mcs / class / System.XML / System.Xml.Serialization / XmlNodeEventArgs.cs
index 4e8ee5270bc1b884da341bb0270edd4d2eb9e64f..e475779ae32db756372153fd86b50364d28df2b1 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-using System.Xml;\r
-using System;\r
-\r
-namespace System.Xml.Serialization\r
-{\r
-       /// <summary>\r
-       /// Summary description for XmlNodeEventArgs.\r
-       /// </summary>\r
-       public class XmlNodeEventArgs : EventArgs\r
-       {\r
-               private int linenumber;\r
-               private int lineposition ;\r
-               private string localname;\r
-               private string name;\r
-               private string nsuri;\r
-               private XmlNodeType nodetype;\r
-               private object source;\r
-               private string text;\r
-\r
-               internal XmlNodeEventArgs(int linenumber, int lineposition, string localname, string name, string nsuri,\r
-                       XmlNodeType nodetype, object source, string text)\r
-               {\r
-                       this.linenumber = linenumber;\r
-                       this.lineposition = lineposition;\r
-                       this.localname = localname;\r
-                       this.name = name;\r
-                       this.nsuri = nsuri;\r
-                       this.nodetype = nodetype;\r
-                       this.source = source;\r
-                       this.text = text;\r
-               }\r
-\r
+using System.Xml;
+using System;
+
+namespace System.Xml.Serialization
+{
+       /// <summary>
+       /// Summary description for XmlNodeEventArgs.
+       /// </summary>
+       public class XmlNodeEventArgs : EventArgs
+       {
+               private int linenumber;
+               private int lineposition ;
+               private string localname;
+               private string name;
+               private string nsuri;
+               private XmlNodeType nodetype;
+               private object source;
+               private string text;
+
+               internal XmlNodeEventArgs(int linenumber, int lineposition, string localname, string name, string nsuri,
+                       XmlNodeType nodetype, object source, string text)
+               {
+                       this.linenumber = linenumber;
+                       this.lineposition = lineposition;
+                       this.localname = localname;
+                       this.name = name;
+                       this.nsuri = nsuri;
+                       this.nodetype = nodetype;
+                       this.source = source;
+                       this.text = text;
+               }
+
                public int LineNumber 
-               {\r
-                       get { return linenumber; } \r
+               {
+                       get { return linenumber; } 
                }
-               \r
+               
                public int LinePosition 
-               {\r
-                       get { return lineposition; } \r
-               }\r
-\r
+               {
+                       get { return lineposition; } 
+               }
+
                public string LocalName
-               {\r
-                       get { return localname; } \r
-               }\r
-\r
+               {
+                       get { return localname; } 
+               }
+
                public string Name 
-               {\r
-                       get { return name; } \r
-               }\r
-\r
+               {
+                       get { return name; } 
+               }
+
                public string NamespaceURI
-               {\r
-                       get { return nsuri; } \r
-               }\r
-\r
+               {
+                       get { return nsuri; } 
+               }
+
                public XmlNodeType NodeType
-               {\r
-                       get { return nodetype; } \r
-               }\r
-\r
+               {
+                       get { return nodetype; } 
+               }
+
                public object ObjectBeingDeserialized 
-               {\r
-                       get { return source; } \r
-               }\r
-\r
+               {
+                       get { return source; } 
+               }
+
                public string Text
-               {\r
-                       get { return text; } \r
-               }\r
-       }\r
-}\r
+               {
+                       get { return text; } 
+               }
+       }
+}