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