DataCache.Prepend Method (String, String, String)

 

Prepends a string to a string object stored in the cache in the specified region.

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

Syntax

public void Prepend(
    string key,
    string value,
    string region
)
public:
void Prepend(
    String^ key,
    String^ value,
    String^ region
)
member Prepend : 
        key:string *
        value:string *
        region:string -> unit
Public Sub Prepend (
    key As String,
    value As String,
    region As String
)

Parameters

  • key
    Type: System.String

    The key of the object stored in the cache. The object must be a string.

  • value
    Type: System.String

    The string to prepend to the stored object.

  • region
    Type: System.String

    The user-defined region in which the object is stored.

See Also

Prepend Overload
DataCache Class
Microsoft.ApplicationServer.Caching Namespace

Return to top