5 implementations of TryGetValue
mscorlib (5)
system\threading\asynclocal.cs (5)
165public bool TryGetValue(IAsyncLocal key, out object value) 203public bool TryGetValue(IAsyncLocal key, out object value) 252public bool TryGetValue(IAsyncLocal key, out object value) 316public bool TryGetValue(IAsyncLocal key, out object value) 426public bool TryGetValue(IAsyncLocal key, out object value)
6 references to TryGetValue
mscorlib (6)
system\threading\executioncontext.cs (6)
650m_ec._localValues.TryGetValue(local, out value); 681bool hadPreviousValue = current._localValues != null && current._localValues.TryGetValue(local, out previousValue); 745previous._localValues.TryGetValue(local, out previousValue); 749current._localValues.TryGetValue(local, out currentValue); 768!previous._localValues.TryGetValue(local, out previousValue)) 772current._localValues.TryGetValue(local, out currentValue);