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)
392
previousExecutionCtx.m_localValues.
TryGetValue
(local, out object? previousValue);
393
nextExecutionCtx.m_localValues.
TryGetValue
(local, out object? currentValue);
408
if (!previousExecutionCtx.m_localValues.
TryGetValue
(local, out object? previousValue))
410
nextExecutionCtx.m_localValues.
TryGetValue
(local, out object? currentValue);
426
previousExecutionCtx.m_localValues.
TryGetValue
(local, out object? previousValue);
440
nextExecutionCtx.m_localValues.
TryGetValue
(local, out object? currentValue);
473
current.m_localValues.
TryGetValue
(local, out object? value);
488
hadPreviousValue = current.m_localValues.
TryGetValue
(local, out previousValue);