DataCacheOperationDescriptor Constructor (String, String, String, DataCacheOperations, DataCacheItemVersion)

 

Creates a new instance of the DataCacheOperationDescriptor class using the specified parameters.

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

Syntax

public DataCacheOperationDescriptor(
    string cacheName,
    string regionName,
    string key,
    DataCacheOperations opType,
    DataCacheItemVersion version
)
public:
DataCacheOperationDescriptor(
    String^ cacheName,
    String^ regionName,
    String^ key,
    DataCacheOperations opType,
    DataCacheItemVersion^ version
)
new : 
        cacheName:string *
        regionName:string *
        key:string *
        opType:DataCacheOperations *
        version:DataCacheItemVersion -> DataCacheOperationDescriptor
Public Sub New (
    cacheName As String,
    regionName As String,
    key As String,
    opType As DataCacheOperations,
    version As DataCacheItemVersion
)

Parameters

  • cacheName
    Type: System.String

    Name of the cache in which the operation occurred.

  • regionName
    Type: System.String

    The name of the region where the object is stored.

  • key
    Type: System.String

    The key used to store the object in the cache.

See Also

DataCacheOperationDescriptor Class
Microsoft.ApplicationServer.Caching Namespace

Return to top