Show / Hide Table of Contents

Interface IArubaModuleSettings

Interface for handling and updating Aruba's Phoenix settings.

Namespace: Phoenix.Aruba
Assembly: Phoenix.Plugin.Aruba.dll
Syntax
public interface IArubaModuleSettings

Properties

View Source

Settings

Gets the Aruba settings instance.

Declaration
ArubaSettings Settings { get; }
Property Value
Type Description
ArubaSettings

Methods

View Source

ChangeSetting(string, object)

Changes the settings.

Declaration
void ChangeSetting(string key, object value)
Parameters
Type Name Description
string key

A settings key.

object value

The new value.

View Source

ChangeSettings(IDictionary<string, object>)

Changes the settings.

Declaration
void ChangeSettings(IDictionary<string, object> items)
Parameters
Type Name Description
IDictionary<string, object> items

The items that changed.

View Source

ChangeSettings(params KeyValuePair<string, object>[])

Changes the settings.

Declaration
void ChangeSettings(params KeyValuePair<string, object>[] items)
Parameters
Type Name Description
KeyValuePair<string, object>[] items

The items that changed.

View Source

ToggleShowBugSubmittedPopupSetting(bool)

Changes the settings for the show bug submitted pop-up.

Declaration
void ToggleShowBugSubmittedPopupSetting(bool showPopup)
Parameters
Type Name Description
bool showPopup

Whether to show the pop-up or not.

  • View Source
In this article
Back to top Generated by DocFX