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