Click or drag to resize

IgnitionCacheAccessTryGetValueT Method

Returns an entry from the cache, with an automatic cast to T.

Namespace: Ignition.Utility
Assembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.28229
Syntax
public bool TryGetValue<T>(
	string key,
	out T value
)

Parameters

key  String
A unique identifier for the cache entry to get.
value  T
A reference to the cache entry that is identified by key, if the entry exists; otherwise, null.

Type Parameters

T

Return Value

Boolean
true of the requested entry was found in the cache; otherwise false.
See Also