IXmlDictionary.cs 270 B

12345678910
  1. namespace System.Xml
  2. {
  3. public interface IXmlDictionary
  4. {
  5. bool TryLookup (int key, out XmlDictionaryString result);
  6. bool TryLookup (string value, out XmlDictionaryString result);
  7. bool TryLookup (XmlDictionaryString value,
  8. out XmlDictionaryString result);
  9. }
  10. }