Implemented interface members:
5 references to TryGetValue
Microsoft.AspNetCore.Http (5)
Features\QueryFeature.cs (1)
139
if (!_accumulator.
TryGetValue
(key, out var values))
Internal\RequestCookieCollection.cs (1)
127
return Store.
TryGetValue
(key, out value);
QueryCollectionInternal.cs (1)
61
public bool TryGetValue(string key, out StringValues value) => Store.
TryGetValue
(key, out value);
src\Shared\Dictionary\AdaptiveCapacityDictionary.cs (2)
107
TryGetValue
(key, out var value);
271
return
TryGetValue
(item.Key, out var value) && EqualityComparer<object>.Default.Equals(value, item.Value);