 | IgnitionCacheAccessGetT Method |
Returns an entry from the cache, with an automatic cast to T.
Namespace: Ignition.UtilityAssembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.28229
Syntaxpublic T Get<T>(
string key
)
Public Function Get(Of T) (
key As String
) As T
public:
generic<typename T>
T Get(
String^ key
)
member Get :
key : string -> 'T Parameters
- key String
- A unique identifier for the cache entry to get.
Type Parameters
- T
Return Value
TA reference to the cache entry that is identified by
key, if the entry exists; otherwise,
null.
See Also