AutoQuery.Systems.ProfileChangedArgs.ProfileChangedArgs C# (CSharp) Méthode

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
            public ProfileChangedArgs(ProfileChangeType changeType, string section, string entry, object value)
            {
                m_changeType = changeType;
                m_section = section;
                m_entry = entry;
                m_value = value;
            }
Systems.ProfileChangedArgs