Table of Contents

Delegate CachedLoader<TKey, TValue>.TryLoadValueDelegate

Namespace
Utils.Collections
Assembly
Utils.dll

Represents a method that attempts to load a value associated with the specified key.

public delegate bool CachedLoader<TKey, TValue>.TryLoadValueDelegate(TKey key, out TValue value)

Parameters

key TKey

The key identifying the value to load.

value TValue

When the method returns, contains the loaded value if the method succeeded; otherwise, the default value.

Returns

bool

true if the value could be loaded; otherwise, false.

Extension Methods