IXmlDictionary.cs 289 B

123456789101112
  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