745af8a7efeae1c24875b227e29c1cb881215153
[mono.git] / mcs / class / System.XML / System.Xml.Serialization / XmlAttributeOverrides.cs
1 //
2 // XmlAttributeOverrides.cs: 
3 //
4 // Author:
5 //   John Donagher (john@webmeta.com)
6 //
7 // (C) 2002 John Donagher
8 //
9
10 using System;\r
11 \r
12 namespace System.Xml.Serialization\r
13 {\r
14         /// <summary>\r
15         /// Summary description for XmlAttributeOverrides.\r
16         /// </summary>\r
17         public class XmlAttributeOverrides\r
18         {\r
19                 \r
20                 public XmlAttributes this[Type type]\r
21                 {\r
22                         [MonoTODO]\r
23                         get{ throw new NotImplementedException (); }\r
24                 }\r
25 \r
26                 public XmlAttributes this[Type type, string member] \r
27                 {\r
28                         [MonoTODO]\r
29                         get{ throw new NotImplementedException (); }\r
30                 }\r
31 \r
32                 [MonoTODO]\r
33                 public void Add (Type type, XmlAttributes attributes)\r
34                 {\r
35                         throw new NotImplementedException ();\r
36                 }\r
37                 [MonoTODO]\r
38                 public void Add( Type type, string member, XmlAttributes attributes)\r
39                 {\r
40                         throw new NotImplementedException ();\r
41                 }\r
42 \r
43         }\r
44 }\r