C# Class Framework.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.
Inheritance: ProfileChangedArgs
Afficher le fichier Open project: CarlosX/DarkEmu Class Usage Examples

Méthodes publiques

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

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

Method Details

ProfileChangingArgs() public méthode

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.
Résultat System