Method Create
Create<TKey, TValue>(Cache<TKey, TValue>, TKey)
Creates a dependency specification that can be supplied to a CreatePolicy when adding a dependant (child) object to a cache.
public static DependencySpec Create<TKey, TValue>(Cache<TKey, TValue> cache, TKey key)
Parameters
cacheCache<TKey, TValue>The Cache<TKey, TValue> instance containing the parent object.
keyTKeyThe key identifying the parent object.
Returns
- DependencySpec
A DependencySpec instance.
Type Parameters
TKeyType of key used to identify the parent object.
TValueType of the parent object.