2005-09-22 Chris Toshok <toshok@ximian.com>
[mono.git] / mcs / class / System.Runtime.Serialization / System.Xml / IXmlDictionary.cs
1 #if NET_2_0
2 namespace System.Xml
3 {
4         public interface IXmlDictionary
5         {
6                 bool TryLookup (int key, out XmlDictionaryString result);
7                 bool TryLookup (string value, out XmlDictionaryString result);
8                 bool TryLookup (XmlDictionaryString value,
9                         out XmlDictionaryString result);
10         }
11 }
12 #endif