IXmlMtomReaderInitializer.cs 458 B

12345678910111213141516171819
  1. #if NET_2_0
  2. using System;
  3. using System.IO;
  4. using System.Text;
  5. namespace System.Xml
  6. {
  7. public interface IXmlMtomReaderInitializer
  8. {
  9. void SetInput (Stream stream, Encoding [] encodings,
  10. string contentType, OnXmlDictionaryReaderClose onClose,
  11. XmlParserContext context);
  12. void SetInput (byte [] buffer, int offset, int count, Encoding [] encodings,
  13. string contentType, OnXmlDictionaryReaderClose onClose,
  14. XmlParserContext context);
  15. }
  16. }
  17. #endif