SettingChangingEventArgs(String, String, String, Object, Boolean) Constructor

Definition

Initializes an instance of the SettingChangingEventArgs class.

C#
public SettingChangingEventArgs(string settingName, string settingClass, string settingKey, object newValue, bool cancel);

Parameters

settingName
String

A String containing the name of the application setting.

settingClass
String

A String containing a category description of the setting. Often this parameter is set to the application settings group name.

settingKey
String

A String containing the application settings key.

newValue
Object

An Object that contains the new value to be assigned to the application settings property.

cancel
Boolean

true to cancel the event; otherwise, false.

Remarks

The SettingChangingEventArgs constructor just assigns the values of the parameters to the corresponding properties in the SettingChangingEventArgs class.

Applies to

Produkt Verzie
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also