IXmlBinaryWriterInitializer.cs 247 B

123456789101112131415
  1. #if NET_2_0
  2. using System;
  3. using System.IO;
  4. namespace System.Xml
  5. {
  6. public interface IXmlBinaryWriterInitializer
  7. {
  8. void SetOutput (Stream stream,
  9. IXmlDictionary dictionary,
  10. XmlBinaryWriterSession session,
  11. bool ownsStream);
  12. }
  13. }
  14. #endif