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