13 lines
513 B
C#
13 lines
513 B
C#
|
//-----------------------------------------------------------------------------
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//-----------------------------------------------------------------------------
|
||
|
namespace System.Xml
|
||
|
{
|
||
|
public interface IXmlDictionary
|
||
|
{
|
||
|
bool TryLookup(string value, out XmlDictionaryString result);
|
||
|
bool TryLookup(int key, out XmlDictionaryString result);
|
||
|
bool TryLookup(XmlDictionaryString value, out XmlDictionaryString result);
|
||
|
}
|
||
|
}
|