C# Class NuGet.Test.MockUserSettingsManager

Inheritance: ISettings
Mostrar archivo Open project: monoman/NugetCracker Class Usage Examples

Public Methods

Method Description
DeleteSection ( string section ) : bool
DeleteValue ( string section, string key ) : bool
GetValue ( string section, string key ) : string
GetValues ( string section ) : string>>.IList
SetValue ( string section, string key, string value ) : void
SetValues ( string section, string>.IList values ) : void

Method Details

DeleteSection() public method

public DeleteSection ( string section ) : bool
section string
return bool

DeleteValue() public method

public DeleteValue ( string section, string key ) : bool
section string
key string
return bool

GetValue() public method

public GetValue ( string section, string key ) : string
section string
key string
return string

GetValues() public method

public GetValues ( string section ) : string>>.IList
section string
return string>>.IList

SetValue() public method

public SetValue ( string section, string key, string value ) : void
section string
key string
value string
return void

SetValues() public method

public SetValues ( string section, string>.IList values ) : void
section string
values string>.IList
return void