| 123456789101112131415 |
- #if NET_2_0
- using System;
- using System.IO;
- namespace System.Xml
- {
- public interface IXmlBinaryWriterInitializer
- {
- void SetOutput (Stream stream,
- IXmlDictionary dictionary,
- XmlBinaryWriterSession session,
- bool ownsStream);
- }
- }
- #endif
|