C# Class AutoQuery.Systems.ProfileChangedArgs

EventArgs class to be passed as the second parameter of a Profile.Changed event handler.
This class provides all the information relevant to the change made to the Profile. It is also used as a convenient base class for the ProfileChangingArgs class which is passed as the second parameter of the Profile.Changing event handler.
Inheritance: System.EventArgs
Afficher le fichier Open project: CarlosX/RakionLauncher

Méthodes publiques

Méthode Description
ProfileChangedArgs ( ProfileChangeType changeType, string section, string entry, object value ) : System

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

Method Details

ProfileChangedArgs() public méthode

Initializes a new instance of the ProfileChangedArgs class by initializing all of its properties.
public ProfileChangedArgs ( ProfileChangeType changeType, string section, string entry, object value ) : System
changeType ProfileChangeType /// The type of change 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.
Résultat System