6 implementations of TryGetValue
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Threading\AsyncLocal.cs (6)
131
public bool
TryGetValue
(IAsyncLocal key, out object? value)
169
public bool
TryGetValue
(IAsyncLocal key, out object? value)
221
public bool
TryGetValue
(IAsyncLocal key, out object? value)
283
public bool
TryGetValue
(IAsyncLocal key, out object? value)
354
public bool
TryGetValue
(IAsyncLocal key, out object? value)
464
public bool
TryGetValue
(IAsyncLocal key, out object? value)
8 references to TryGetValue
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Threading\ExecutionContext.cs (8)
377
previousExecutionCtx.m_localValues.
TryGetValue
(local, out object? previousValue);
378
nextExecutionCtx.m_localValues.
TryGetValue
(local, out object? currentValue);
393
if (!previousExecutionCtx.m_localValues.
TryGetValue
(local, out object? previousValue))
395
nextExecutionCtx.m_localValues.
TryGetValue
(local, out object? currentValue);
411
previousExecutionCtx.m_localValues.
TryGetValue
(local, out object? previousValue);
425
nextExecutionCtx.m_localValues.
TryGetValue
(local, out object? currentValue);
458
current.m_localValues.
TryGetValue
(local, out object? value);
473
hadPreviousValue = current.m_localValues.
TryGetValue
(local, out previousValue);