C# 클래스 HandBrake.ApplicationServices.Services.UserSettingService

The User Setting Serivce
상속: IUserSettingService
파일 보기 프로젝트 열기: golgol7777/HandBrakeWinSource 1 사용 예제들

공개 메소드들

메소드 설명
GetUserSettingBoolean ( string name ) : bool

Get an Boolean type user setting

GetUserSettingDouble ( string name ) : double

Get an Double type user setting

GetUserSettingInt ( string name ) : int

Get an Integer type user setting

GetUserSettingString ( string name ) : string

Get an String type user setting

GetUserSettingStringCollection ( string name ) : System.Collections.Specialized.StringCollection

Get an StringCollection type user setting

SetUserSetting ( string name, object value ) : void

Set the specified user setting.

메소드 상세

GetUserSettingBoolean() 공개 메소드

Get an Boolean type user setting
public GetUserSettingBoolean ( string name ) : bool
name string /// The setting name ///
리턴 bool

GetUserSettingDouble() 공개 메소드

Get an Double type user setting
public GetUserSettingDouble ( string name ) : double
name string /// The setting name ///
리턴 double

GetUserSettingInt() 공개 메소드

Get an Integer type user setting
public GetUserSettingInt ( string name ) : int
name string /// The setting name ///
리턴 int

GetUserSettingString() 공개 메소드

Get an String type user setting
public GetUserSettingString ( string name ) : string
name string /// The setting name ///
리턴 string

GetUserSettingStringCollection() 공개 메소드

Get an StringCollection type user setting
public GetUserSettingStringCollection ( string name ) : System.Collections.Specialized.StringCollection
name string /// The setting name ///
리턴 System.Collections.Specialized.StringCollection

SetUserSetting() 공개 메소드

Set the specified user setting.
public SetUserSetting ( string name, object value ) : void
name string /// Name of the property ///
value object /// The value to store. ///
리턴 void