Table of Contents

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

key string

key of Configuration.

newValue string

Value from Configuration after operation.

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

string

NewValue

Gets the value belonging to the configuration operation.

public string NewValue { get; }

Property Value

string

OldValue

Gets the value from the configuration before operation

public string? OldValue { get; }

Property Value

string
To top