DataCache.ResetObjectTimeout Method (String, TimeSpan, String)

 

Resets the object timeout value, defining how long objects reside in the region before expiring. The value specified for the object overrides the default settings for the cache.

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

Syntax

public void ResetObjectTimeout(
    string key,
    TimeSpan newTimeout,
    string region
)
public:
void ResetObjectTimeout(
    String^ key,
    TimeSpan newTimeout,
    String^ region
)
member ResetObjectTimeout : 
        key:string *
        newTimeout:TimeSpan *
        region:string -> unit
Public Sub ResetObjectTimeout (
    key As String,
    newTimeout As TimeSpan,
    region As String
)

Parameters

  • key
    Type: System.String

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

  • newTimeout
    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 where the object resides.

Remarks

Unless explicitly specified at the time the object was added to the cache, the timeout value specified in the named cache configuration is used. This method allows you to re-start the clock for the object expiration.

See Also

ResetObjectTimeout Overload
DataCache Class
Microsoft.ApplicationServer.Caching Namespace

Return to top