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
keystringkey of Configuration.
newValuestringValue from Configuration after operation.
oldValuestringValue 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; }