| 12345678910111213141516171819202122232425 |
- #if NET_2_0
- using System;
- using System.IO;
- namespace System.Xml
- {
- public interface IXmlBinaryReaderInitializer
- {
- void SetInput (
- Stream stream,
- IXmlDictionary dictionary,
- XmlDictionaryReaderQuotas quota,
- XmlBinaryReaderSession session,
- OnXmlDictionaryReaderClose onClose,
- XmlParserContext context);
- void SetInput (byte [] buffer, int offset, int count,
- IXmlDictionary dictionary,
- XmlDictionaryReaderQuotas quota,
- XmlBinaryReaderSession session,
- OnXmlDictionaryReaderClose onClose,
- XmlParserContext context);
- }
- }
- #endif
|