C# 클래스 Framework.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.
상속: System.EventArgs
파일 보기 프로젝트 열기: CarlosX/DarkEmu 1 사용 예제들

공개 메소드들

메소드 설명
ProfileChangedArgs ( ProfileChangeType changeType, string section, string entry, object value ) : System

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

메소드 상세

ProfileChangedArgs() 공개 메소드

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.
리턴 System