Class ArubaModuleSettings
Class for handling and updating Aruba's Phoenix settings.
Implements
Inherited Members
Namespace: Phoenix.Aruba
Assembly: Phoenix.Plugin.Aruba.dll
Syntax
public class ArubaModuleSettings : IArubaModuleSettings
Constructors
View SourceArubaModuleSettings()
Initialize a new instance of ArubaModuleSettings.
Declaration
public ArubaModuleSettings()
Properties
View SourceSettings
Gets the Aruba settings instance.
Declaration
public ArubaSettings Settings { get; }
Property Value
Type | Description |
---|---|
ArubaSettings |
Methods
View SourceChangeSetting(string, object)
Changes the settings.
Declaration
public void ChangeSetting(string key, object value)
Parameters
Type | Name | Description |
---|---|---|
string | key | A settings key. |
object | value | The new value. |
ChangeSettings(IDictionary<string, object>)
Changes the settings.
Declaration
public void ChangeSettings(IDictionary<string, object> items)
Parameters
Type | Name | Description |
---|---|---|
IDictionary<string, object> | items | The items that changed. |
ChangeSettings(params KeyValuePair<string, object>[])
Changes the settings.
Declaration
public void ChangeSettings(params KeyValuePair<string, object>[] items)
Parameters
Type | Name | Description |
---|---|---|
KeyValuePair<string, object>[] | items | The items that changed. |
ToggleShowBugSubmittedPopupSetting(bool)
Changes the settings for the show bug submitted pop-up.
Declaration
public void ToggleShowBugSubmittedPopupSetting(bool showPopup)
Parameters
Type | Name | Description |
---|---|---|
bool | showPopup | Whether to show the pop-up or not. |