AsyncXmlTextWriter.cs 680 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // AsyncXmlTextWriter.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. //
  8. #if NET_1_2
  9. using System;
  10. using System.IO;
  11. namespace System.Xml
  12. {
  13. public class AsyncXmlTextWriter : XmlTextWriter
  14. {
  15. // TODO
  16. public AsyncXmlTextWriter (/*Async*/StreamWriter writer)
  17. : base (writer)
  18. {
  19. }
  20. public virtual IAsyncResult BeginFlush (AsyncCallback callback, object state)
  21. {
  22. throw new NotImplementedException ();
  23. }
  24. public virtual void EndFlush (IAsyncResult result)
  25. {
  26. throw new NotImplementedException ();
  27. }
  28. public override void WriteNode (XmlReader reader, bool defaultAttribute)
  29. {
  30. throw new NotImplementedException ();
  31. }
  32. }
  33. }
  34. #endif