| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #if NET_2_0
- namespace System.Xml
- {
- public class XmlBinaryReaderSession : IXmlDictionary
- {
- public XmlBinaryReaderSession ()
- {
- }
- [MonoTODO]
- public XmlDictionaryString Add (int id, string value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Clear ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public bool TryLookup (int key, out XmlDictionaryString result)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public bool TryLookup (string value, out XmlDictionaryString result)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public bool TryLookup (XmlDictionaryString value,
- out XmlDictionaryString result)
- {
- throw new NotImplementedException ();
- }
- }
- }
- #endif
|