8 implementations of TryLookup
System.IdentityModel (1)
System\IdentityModel\IdentityModelDictionary.cs (1)
56public bool TryLookup(int key, out XmlDictionaryString value)
System.Runtime.Serialization (4)
System\Xml\XmlBinaryReaderSession.cs (1)
58public bool TryLookup(int key, out XmlDictionaryString result)
System\Xml\XmlDictionary.cs (2)
75public virtual bool TryLookup(int key, out XmlDictionaryString result) 107public bool TryLookup(int key, out XmlDictionaryString result)
System\Xml\XmlDictionaryString.cs (1)
117public bool TryLookup(int key, out XmlDictionaryString result)
System.ServiceModel (3)
System\ServiceModel\Channels\TransportOutputChannel.cs (1)
149public bool TryLookup(int key, out XmlDictionaryString result)
System\ServiceModel\Security\WSSecurityTokenSerializer.cs (1)
595public bool TryLookup(int key, out XmlDictionaryString result)
System\ServiceModel\ServiceModelDictionary.cs (1)
56public bool TryLookup(int key, out XmlDictionaryString value)
3 references to TryLookup
System.Runtime.Serialization (2)
System\Xml\XmlBufferReader.cs (2)
1221if (!keyDictionary.TryLookup(key >> 1, out s)) 1248if (!dictionary.TryLookup(staticKey, out xmlString))
System.ServiceModel (1)
System\ServiceModel\Channels\BinaryMessageEncoder.cs (1)
1585return dictionary.TryLookup(BinaryFormatParser.GetStaticKey(key), out result);