| 123456789101112131415 |
- #if NET_2_0
- using System;
- using System.IO;
- using System.Text;
- namespace System.Xml
- {
- public interface IXmlMtomWriterInitializer
- {
- void SetOutput (Stream stream, Encoding encoding,
- int maxSizeInBytes, string startInfo, string boundary,
- string startUri, bool writeMessageHeaders);
- }
- }
- #endif
|