CacheGet(String) Method
Immediatley retrieve an object from the cache with the given name with no throttling.
Namespace: ASCOM.UtilitiesAssembly: ASCOM.Cache (in ASCOM.Cache.dll) Version: 7.1.3+4851.c5da65c2b
public Object Get(
string Key
)
Public Function Get (
Key As String
) As Object
public:
virtual Object^ Get(
String^ Key
) sealed
- Key String
- Name of this item in the cache. The key is case sensitive.
ObjectThe requested object, if present in the cache, or a "NotInCacheException" if there is no item in the cache that has the supplied name.