C# Class HandBrake.ApplicationServices.Services.UserSettingService

The User Setting Serivce
Inheritance: IUserSettingService
Mostra file Open project: golgol7777/HandBrakeWinSource Class Usage Examples

Public Methods

Method Description
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.

Method Details

GetUserSettingBoolean() public method

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

GetUserSettingDouble() public method

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

GetUserSettingInt() public method

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

GetUserSettingString() public method

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

GetUserSettingStringCollection() public method

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

SetUserSetting() public method

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