XmlBinaryReaderSession.cs 746 B

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