Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Adds or replaces an object in the cache. 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,
IEnumerable<DataCacheTag> tags
)
public:
DataCacheItemVersion^ Put(
String^ key,
Object^ value,
IEnumerable<DataCacheTag^>^ tags
)
member Put :
key:string *
value:Object *
tags:IEnumerable<DataCacheTag> -> DataCacheItemVersion
Public Function Put (
key As String,
value As Object,
tags As IEnumerable(Of DataCacheTag)
) As DataCacheItemVersion
Parameters
key
Type: System.StringThe unique value that is used to identify the object in the cache. Key names must be less than 65 KB.
value
Type: System.ObjectThe object to add or replace.
tags
Type: System.Collections.Generic.IEnumerable<DataCacheTag>A list of tags to associate with the object.
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
Tags may only be used to retrieve a cached object if that object is stored in a region. This overload does not store the object in a region.
See Also
Put Overload
DataCache Class
Microsoft.ApplicationServer.Caching Namespace
Return to top