This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / class / System.XML / System.Xml.Serialization / XmlAttributeEventArgs.cs
1 //
2 // XmlAttributeEventArgs.cs: 
3 //
4 // Author:
5 //   John Donagher (john@webmeta.com)
6 //
7 // (C) 2002 John Donagher
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System.Xml;\r
32 using System;\r
33 \r
34 namespace System.Xml.Serialization\r
35 {\r
36         /// <summary>\r
37         /// Summary description for XmlAttributeEventArgs.\r
38         /// </summary>\r
39         public class XmlAttributeEventArgs : EventArgs\r
40         {\r
41                 private XmlAttribute attr;\r
42                 private int lineNumber;\r
43                 private int linePosition;\r
44                 private object obj;\r
45 \r
46                 internal XmlAttributeEventArgs(XmlAttribute attr, int lineNum, int linePos, object source)\r
47                 {\r
48                         this.attr               = attr;\r
49                         this.lineNumber = lineNum;\r
50                         this.linePosition = linePos;\r
51                         this.obj                = source;\r
52                 }\r
53 \r
54                 public XmlAttribute Attr { \r
55                         get { return attr; }\r
56                 }\r
57 \r
58                 public int LineNumber {\r
59                         get { return lineNumber; }\r
60                 }\r
61                 \r
62                 public int LinePosition {\r
63                         get { return linePosition; }\r
64                 }\r
65                 \r
66                 public object ObjectBeingDeserialized {\r
67                         get{ return obj; }\r
68                 }\r
69         }\r
70 }\r