| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // AsyncXmlTextWriter.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- //
- #if NET_1_2
- using System;
- using System.IO;
- namespace System.Xml
- {
- public class AsyncXmlTextWriter : XmlTextWriter
- {
- // TODO
- public AsyncXmlTextWriter (/*Async*/StreamWriter writer)
- : base (writer)
- {
- }
- public virtual IAsyncResult BeginFlush (AsyncCallback callback, object state)
- {
- throw new NotImplementedException ();
- }
- public virtual void EndFlush (IAsyncResult result)
- {
- throw new NotImplementedException ();
- }
- public override void WriteNode (XmlReader reader, bool defaultAttribute)
- {
- throw new NotImplementedException ();
- }
- }
- }
- #endif
|