DataCache.Put Method (String, Object, TimeSpan, String)
Adds or replaces an object in the specified region. Specifies the timeout value of the cached object. This overload is not supported in Windows Azure Shared Caching.
Assembly: Microsoft.ApplicationServer.Caching.Client (in Microsoft.ApplicationServer.Caching.Client.dll)
Public Function Put ( key As String, value As Object, timeout As TimeSpan, region As String ) As DataCacheItemVersion
Parameters
- key
-
Type:
System.String
Adds or replaces an object in the specified region. Specifies the timeout value of the cached object. Key names must be less than 65 KB.
- value
-
Type:
System.Object
The object to add or replace.
- 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.DataCacheItemVersionA DataCacheItemVersion object that represents the version of the object saved to the cache under the key value.
The timeout value associated with the cached object overrides expiration settings specified in the named cache configuration.
Show: