DataCache.Get Method (String, String)

 

Gets an object from the specified region by using the specified key. This overload is not supported in Windows Azure Shared Caching.

Namespace:   Microsoft.ApplicationServer.Caching
Assembly:  Microsoft.ApplicationServer.Caching.Client (in Microsoft.ApplicationServer.Caching.Client.dll)

Syntax

public object Get(
    string key,
    string region
)
public:
Object^ Get(
    String^ key,
    String^ region
)
member Get : 
        key:string *
        region:string -> Object
Public Function Get (
    key As String,
    region As String
) As Object

Parameters

  • key
    Type: System.String

    The unique value that is used to identify the object in the region.

  • region
    Type: System.String

    The name of the region where the object resides.

Return Value

Type: System.Object

The object that was cached by using the specified key. Null is returned if the key does not exist.

See Also

Get Overload
DataCache Class
Microsoft.ApplicationServer.Caching Namespace

Return to top