IXmlUTF8WriterInitializer.cs 177 B

123456789101112
  1. #if NET_2_0
  2. using System;
  3. using System.IO;
  4. namespace System.Xml
  5. {
  6. public interface IXmlUTF8WriterInitializer
  7. {
  8. void SetOutput (Stream stream, bool ownsStream);
  9. }
  10. }
  11. #endif