IXmlUTF8ReaderInitializer.cs 287 B

123456789101112131415
  1. #if NET_2_0
  2. using System;
  3. using System.IO;
  4. namespace System.Xml
  5. {
  6. public interface IXmlUTF8ReaderInitializer
  7. {
  8. void SetInput (byte [] buffer, int offset, int count,
  9. XmlDictionaryReaderQuotas quota,
  10. OnXmlDictionaryReaderClose onClose,
  11. XmlParserContext context);
  12. }
  13. }
  14. #endif