Class ConfigurationNotification.ConfigurationNotificationArgs
- Namespace
- Dynamicweb.Configuration
- Assembly
- Dynamicweb.Core.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
stringkey of Configuration.
newValue
stringValue from Configuration after operation.
oldValue
stringValue 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; }