Fetch Method

Syntax

Fetch as CallResult (Key as C)

Fetch as CallResult (Key as C, CreateTime as T)

Fetch as CallResult (Key as C, AlternateGuid as C)

Fetch as CallResult (Key as C, AlternateGuid as K)

Fetch as CallResult (Key as C, CreateTime as T, AlternateGuid as C)

Fetch as CallResult (Key as C, CreateTime as T, AlternateGuid as K)

Arguments

KeyCharacter

The key for the data to be cached

CreateTimeTime

The timestamp for the max age of a cached entry. If an entry is found and it is older than the passed in CreateTime, the item is stale, removed from the cache, and not returned.

AlternateGuidCharacter K

A guid string or guid for an alternate lookup in the cache. For internal use only.

Description

Fetch an item from the cache

Discussion

Check the CallResult for success or not. If successful, CallResult.ReturnDataValue will have the cached data.