Implemented interface member:
method
TryGetValue
System.Collections.Generic.IDictionary<TKey, TValue>.TryGetValue(TKey, out TValue)
1 override of TryGetValue
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (1)
517public override bool TryGetValue(ModelItem key, out ModelItem value)
2 references to TryGetValue
System.Data (2)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Interaction\Model\ModelItemDictionary.cs (2)
162return TryGetValue(item.Key, out value) && value == item.Value; 423if (TryGetValue(item.Key, out value) && value == item.Value) {