Method TryGetValue
TryGetValue<T, TKey, TResult>(IObservableCache<T, TKey>, TKey, out TResult, Func<T, TResult>)
Declaration
public static bool TryGetValue<T, TKey, TResult>(this IObservableCache<T, TKey> instance, TKey key, out TResult value, Func<T, TResult> converter)
Parameters
Type |
Name |
Description |
IObservableCache<T, TKey> |
instance |
|
TKey |
key |
|
TResult |
value |
|
Func<T, TResult> |
converter |
|
Returns
Type Parameters
Name |
Description |
T |
|
TKey |
|
TResult |
|
TryGetValue<T, TKey>(IObservableCache<T, TKey>, TKey, out T)
Declaration
public static bool TryGetValue<T, TKey>(this IObservableCache<T, TKey> instance, TKey key, out T value)
Parameters
Type |
Name |
Description |
IObservableCache<T, TKey> |
instance |
|
TKey |
key |
|
T |
value |
|
Returns
Type Parameters