New test.
[mono.git] / mcs / class / System.Runtime.Serialization / System.Xml / XmlBinaryReaderSession.cs
1 #if NET_2_0
2 namespace System.Xml
3 {
4         public class XmlBinaryReaderSession : IXmlDictionary
5         {
6                 public XmlBinaryReaderSession ()
7                 {
8                 }
9
10                 [MonoTODO]
11                 public XmlDictionaryString Add (int id, string value)
12                 {
13                         throw new NotImplementedException ();
14                 }
15
16                 [MonoTODO]
17                 public void Clear ()
18                 {
19                         throw new NotImplementedException ();
20                 }
21
22                 [MonoTODO]
23                 public bool TryLookup (int key, out XmlDictionaryString result)
24                 {
25                         throw new NotImplementedException ();
26                 }
27
28                 [MonoTODO]
29                 public bool TryLookup (string value, out XmlDictionaryString result)
30                 {
31                         throw new NotImplementedException ();
32                 }
33
34                 [MonoTODO]
35                 public bool TryLookup (XmlDictionaryString value,
36                         out XmlDictionaryString result)
37                 {
38                         throw new NotImplementedException ();
39                 }
40         }
41 }
42 #endif