Share via


DataCache.Add Method (String, Object)

[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Adds an object to the cache.

Namespace: Microsoft.Data.Caching
Assembly: ClientLibrary (in clientlibrary.dll)

Syntax

'Declaration
Public Function Add ( _
    key As String, _
    value As Object _
) As DataCacheItemVersion
'Usage
Dim instance As DataCache
Dim key As String
Dim value As Object
Dim returnValue As DataCacheItemVersion

returnValue = instance.Add(key, value)
public DataCacheItemVersion Add (
    string key,
    Object value
)
public:
DataCacheItemVersion^ Add (
    String^ key, 
    Object^ value
)
public DataCacheItemVersion Add (
    String key, 
    Object value
)
public function Add (
    key : String, 
    value : Object
) : DataCacheItemVersion

Parameters

  • key
    A unique value that is used to store and retrieve the object from the cache.
  • value
    The object saved to the cache cluster.

Return Value

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

Remarks

An exception is thrown if an item using the same key is already located in the cache. Expiration settings are derived from the named cache configuration. For more information, see Expiration and Eviction (Velocity). For more information about how to use this method, see How to: Add an Object to Cache (Velocity).

See Also

Reference

DataCache Class
DataCache Members
Microsoft.Data.Caching Namespace