| File: System\Configuration\SettingChangingEventArgs.cs | Web Access |
| Project: src\runtime\src\libraries\System.Configuration.ConfigurationManager\src\System.Configuration.ConfigurationManager.csproj (System.Configuration.ConfigurationManager) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.ComponentModel; namespace System.Configuration { /// <summary> /// Event args for the SettingChanging event. /// </summary> public class SettingChangingEventArgs : CancelEventArgs { private readonly string _settingClass; private readonly string _settingName; private readonly string _settingKey; private readonly object _newValue; public SettingChangingEventArgs(string settingName, string settingClass, string settingKey, object newValue, bool cancel) : base(cancel) { _settingName = settingName; _settingClass = settingClass; _settingKey = settingKey; _newValue = newValue; } public object NewValue { get { return _newValue; } } public string SettingClass { get { return _settingClass; } } public string SettingName { get { return _settingName; } } public string SettingKey { get { return _settingKey; } } } }