IXmlUTF8ReaderInitializer.cs 268 B

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