C# Class SobekCM.Core.Builder.Builder_Status

Exibir arquivo Open project: MarkVSullivan/SobekCM-Web-Application Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
Add_Setting ( string Key, string Value ) : void

Add a new setting string key value pair

If a setting for that Key already exists, it will be replaced with the new Value

Builder_Status ( ) : System

Constructor for a new instance of the builder status object

Get_Setting ( string Key ) : string

Gets the setting value, based on key

Method Details

Add_Setting() public method

Add a new setting string key value pair
If a setting for that Key already exists, it will be replaced with the new Value
public Add_Setting ( string Key, string Value ) : void
Key string Key for this setting value
Value string Value for this setting value
return void

Builder_Status() public method

Constructor for a new instance of the builder status object
public Builder_Status ( ) : System
return System

Get_Setting() public method

Gets the setting value, based on key
public Get_Setting ( string Key ) : string
Key string Key for this setting value
return string