8 implementations of TryLookup
dotnet-svcutil-lib (8)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBinaryReaderSession.cs (1)
60public bool TryLookup(int key, out XmlDictionaryString result)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionary.cs (2)
77public virtual bool TryLookup(int key, out XmlDictionaryString result) 109public bool TryLookup(int key, out XmlDictionaryString result)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryString.cs (1)
119public bool TryLookup(int key, out XmlDictionaryString result)
FrameworkFork\System.ServiceModel\System\IdentityModel\IdentityModelDictionary.cs (1)
57public bool TryLookup(int key, out XmlDictionaryString value)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportOutputChannel.cs (1)
146public bool TryLookup(int key, out XmlDictionaryString result)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityTokenSerializer.cs (1)
558public bool TryLookup(int key, out XmlDictionaryString result)
FrameworkFork\System.ServiceModel\System\ServiceModel\ServiceModelDictionary.cs (1)
57public bool TryLookup(int key, out XmlDictionaryString value)
3 references to TryLookup
dotnet-svcutil-lib (3)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBufferReader.cs (2)
1194if (!keyDictionary.TryLookup(key >> 1, out s)) 1221if (!_dictionary.TryLookup(staticKey, out xmlString))
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BinaryMessageEncoder.cs (1)
1468return _dictionary.TryLookup(BinaryFormatParser.GetStaticKey(key), out result);