XmlBinaryWriterSession.cs 513 B

123456789101112131415161718192021222324252627282930313233
  1. namespace System.Xml
  2. {
  3. public class XmlBinaryWriterSession
  4. {
  5. bool emitStrings;
  6. public XmlBinaryWriterSession ()
  7. {
  8. }
  9. public XmlBinaryWriterSession (bool emitStrings)
  10. {
  11. this.emitStrings = emitStrings;
  12. }
  13. public bool EmitStrings {
  14. get { return emitStrings; }
  15. }
  16. [MonoTODO]
  17. public void Reset ()
  18. {
  19. throw new NotImplementedException ();
  20. }
  21. [MonoTODO]
  22. public virtual bool TryAdd (XmlDictionaryString value,
  23. out int key)
  24. {
  25. throw new NotImplementedException ();
  26. }
  27. }
  28. }