Table of Contents

Class CacheNotification.CacheNotificationArgs

Namespace
Dynamicweb.Caching.Notifications
Assembly
Dynamicweb.Caching.dll
Provides information about cache operations.
public class CacheNotification.CacheNotificationArgs : NotificationArgs
Inheritance
CacheNotification.CacheNotificationArgs
Inherited Members

Constructors

CacheNotificationArgs(string)

Initializes a new instance of an object.
public CacheNotificationArgs(string key)

Parameters

key string
key of cache.

CacheNotificationArgs(string, object)

Initializes a new instance of an object.
public CacheNotificationArgs(string key, object oldValue)

Parameters

key string
key of cache.
oldValue object
Value from cache before operation.

Properties

Key

Gets the key belonging to the cacheoperation.
public string Key { get; }

Property Value

string

OldValue

Old value before the operation.
public object OldValue { get; }

Property Value

object
To top