IXmlUTF8WriterInitializer.cs 158 B

12345678910
  1. using System;
  2. using System.IO;
  3. namespace System.Xml
  4. {
  5. public interface IXmlUTF8WriterInitializer
  6. {
  7. void SetOutput (Stream stream, bool ownsStream);
  8. }
  9. }