C# Класс AutoQuery.Systems.ProfileChangingArgs

EventArgs class to be passed as the second parameter of a Profile.Changing event handler.
This class provides all the information relevant to the change about to be made to the Profile. Besides the properties of ProfileChangedArgs, it adds the Cancel property which allows the event handler to prevent the change from happening.
Наследование: ProfileChangedArgs
Показать файл Открыть проект

Открытые методы

Метод Описание
ProfileChangingArgs ( ProfileChangeType changeType, string section, string entry, object value ) : System

Initializes a new instance of the ProfileChangingArgs class by initializing all of its properties.

Описание методов

ProfileChangingArgs() публичный Метод

Initializes a new instance of the ProfileChangingArgs class by initializing all of its properties.
public ProfileChangingArgs ( ProfileChangeType changeType, string section, string entry, object value ) : System
changeType ProfileChangeType /// The type of change to be made to the profile.
section string /// The name of the section involved in the change or null.
entry string /// The name of the entry involved in the change, or if changeType is set to Other, the name of the method/property that was changed.
value object /// The new value for the entry or method/property, based on the value of changeType.
Результат System