XmlBinaryWriterSession.cs 530 B

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