ObjectCache.Get(String, String) Method

Definition

When overridden in a derived class, gets the specified cache entry from the cache as an object.

public abstract object Get (string key, string regionName = default);
abstract member Get : string * string -> obj
Public MustOverride Function Get (key As String, Optional regionName As String = Nothing) As Object

Parameters

key
String

A unique identifier for the cache entry to get.

regionName
String

Optional. A named region in the cache to which the cache entry was added, if regions are implemented. The default value for the optional parameter is null.

Returns

The cache entry that is identified by key.

Applies to