DataCache.Put Method (String, Object, TimeSpan, IEnumerable<DataCacheTag>, String)

 

Adds or replaces an object in the specified region. Specifies the timeout value and associates tags with the cached object. 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 DataCacheItemVersion Put(
    string key,
    object value,
    TimeSpan timeout,
    IEnumerable<DataCacheTag> tags,
    string region
)
public:
DataCacheItemVersion^ Put(
    String^ key,
    Object^ value,
    TimeSpan timeout,
    IEnumerable<DataCacheTag^>^ tags,
    String^ region
)
member Put : 
        key:string *
        value:Object *
        timeout:TimeSpan *
        tags:IEnumerable<DataCacheTag> *
        region:string -> DataCacheItemVersion
Public Function Put (
    key As String,
    value As Object,
    timeout As TimeSpan,
    tags As IEnumerable(Of DataCacheTag),
    region As String
) As DataCacheItemVersion

Parameters

  • key
    Type: System.String

    The unique value that is used to identify the object in the region. Key names must be less than 65 KB.

  • timeout
    Type: System.TimeSpan

    The amount of time that the object should reside in the cache before expiration.

  • region
    Type: System.String

    The name of the region the object resides in.

Return Value

Type: Microsoft.ApplicationServer.Caching.DataCacheItemVersion

A DataCacheItemVersion object that represents the version of the object saved to the cache under the key value.

Remarks

This overload is useful for updating the tags associated with the object.

The timeout value associated with the cached object overrides expiration settings specified in the named cache configuration.

See Also

Put Overload
DataCache Class
Microsoft.ApplicationServer.Caching Namespace

Return to top