C# Class Microsoft.Languages.Editor.Application.Packages.SettingsStorage

Inheritance: IWritableEditorSettingsStorage
Mostrar archivo Open project: Microsoft/RTVS

Public Methods

Method Description
BeginBatchChange ( ) : void
EndBatchChange ( ) : void
GetBoolean ( string name, bool defaultValue = true ) : bool
GetBytes ( string name ) : byte[]
GetInteger ( string name, int defaultValue ) : int
GetString ( string name, string defaultValue = "" ) : string
LoadFromStorage ( ) : void
ResetSettings ( ) : void
SetBoolean ( string name, bool value ) : void
SetBytes ( string name, byte value ) : void
SetInteger ( string name, int value ) : void
SetString ( string name, string value ) : void

Method Details

BeginBatchChange() public method

public BeginBatchChange ( ) : void
return void

EndBatchChange() public method

public EndBatchChange ( ) : void
return void

GetBoolean() public method

public GetBoolean ( string name, bool defaultValue = true ) : bool
name string
defaultValue bool
return bool

GetBytes() public method

public GetBytes ( string name ) : byte[]
name string
return byte[]

GetInteger() public method

public GetInteger ( string name, int defaultValue ) : int
name string
defaultValue int
return int

GetString() public method

public GetString ( string name, string defaultValue = "" ) : string
name string
defaultValue string
return string

LoadFromStorage() public method

public LoadFromStorage ( ) : void
return void

ResetSettings() public method

public ResetSettings ( ) : void
return void

SetBoolean() public method

public SetBoolean ( string name, bool value ) : void
name string
value bool
return void

SetBytes() public method

public SetBytes ( string name, byte value ) : void
name string
value byte
return void

SetInteger() public method

public SetInteger ( string name, int value ) : void
name string
value int
return void

SetString() public method

public SetString ( string name, string value ) : void
name string
value string
return void