XmlBinaryReaderSession.cs 765 B

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