Поділитися через


DataCache.Put Method (String, Object, TimeSpan)

Adds or replaces an object in the cache. Specifies the timeout value of the cached object.

Namespace: Microsoft.ApplicationServer.Caching
Assembly: Microsoft.ApplicationServer.Caching.Client (in microsoft.applicationserver.caching.client.dll)

Usage

'Usage
Dim instance As DataCache
Dim key As String
Dim value As Object
Dim timeout As TimeSpan
Dim returnValue As DataCacheItemVersion

returnValue = instance.Put(key, value, timeout)

Syntax

'Declaration
Public Function Put ( _
    key As String, _
    value As Object, _
    timeout As TimeSpan _
) As DataCacheItemVersion
public DataCacheItemVersion Put (
    string key,
    Object value,
    TimeSpan timeout
)
public:
DataCacheItemVersion^ Put (
    String^ key, 
    Object^ value, 
    TimeSpan timeout
)
public DataCacheItemVersion Put (
    String key, 
    Object value, 
    TimeSpan timeout
)
public function Put (
    key : String, 
    value : Object, 
    timeout : TimeSpan
) : DataCacheItemVersion

Parameters

  • key
    The unique value that is used to identify the object in the cache.
  • value
    The object to add or replace.
  • timeout
    The amount of time that the object should reside in the cache before expiration.

Return Value

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

Remarks

The timeout value associated with the cached object overrides expiration settings specified in the named cache configuration. For more information, see Expiration and Eviction.

For more information about using this method, see How to: Update an Object in Cache.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Visual Studio 2010 and later, .NET Framework 4

Target Platforms

Windows 7; Windows Server 2008 R2; Windows Server 2008 Service Pack 2; Windows Vista Service Pack 2

See Also

Reference

DataCache Class
DataCache Members
Microsoft.ApplicationServer.Caching Namespace

  ff425062(v=azure.10).md 2011-08-26