Class ConfigurationNotification.ConfigurationNotificationArgs
- Namespace
- Dynamicweb.Configuration
- Assembly
- Dynamicweb.Configuration.dll
Provides information about Configuration operations.
public class ConfigurationNotification.ConfigurationNotificationArgs : NotificationArgs
- Inheritance
-
ConfigurationNotification.ConfigurationNotificationArgs
- Inherited Members
Constructors
ConfigurationNotificationArgs(string, string)
Initializes a new instance of an object.
public ConfigurationNotificationArgs(string key, string newValue)
Parameters
ConfigurationNotificationArgs(string, string, string)
Initializes a new instance of an object.
public ConfigurationNotificationArgs(string key, string newValue, string oldValue)
Parameters
key
string- key of Configuration.
newValue
string- Value from Configuration after operation.
oldValue
string- Value from Configuration before operation.
Properties
Key
Gets the key belonging to the configuration operation.
public string Key { get; }
Property Value
NewValue
Gets the value belonging to the configuration operation.
public string NewValue { get; }
Property Value
OldValue
Gets the value from the configuration before operation
public string OldValue { get; }