| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- 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 ();
- }
- }
- }
|