Show / Hide Table of Contents

Class DeviceManagementSettings

Settings class for the Device Management module.

Inheritance
System.Object
SettingsCategoryBase
DeviceManagementSettings
Inherited Members
SettingsCategoryBase.CategoryName
SettingsCategoryBase.DisplayName
SettingsCategoryBase.ShowInSettingsManager
SettingsCategoryBase.AllowedValues
SettingsCategoryBase.GetAllowedValuesOrDefault(String)
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Phoenix.DeviceManagement
Assembly: Phoenix.Core.dll
Syntax
[Serializable]
public class DeviceManagementSettings : SettingsCategoryBase

Constructors

View Source

DeviceManagementSettings()

Initializes a new instance of the DeviceManagementSettings class.

Declaration
public DeviceManagementSettings()

Properties

View Source

DeviceListFile

Gets or sets the file to store the device list in, up until Phoenix version 1.6.0.1044.

Declaration
[PhoenixSetting("DeviceListFile", "Device List File", SettingMetadata = SettingMetadata.File, Hidden = true)]
[Obsolete("Use the NewDeviceListFile property")]
public string DeviceListFile { get; set; }
Property Value
Type Description
System.String
View Source

GroupDefinitions

Gets the list of group definitions.

Declaration
[PhoenixSetting("GroupDefinitions", null, Hidden = true)]
public List<GroupDefinition> GroupDefinitions { get; }
Property Value
Type Description
System.Collections.Generic.List<GroupDefinition>
View Source

MaximumGroupDepth

Gets or sets the maximum group depth for the UI.

Declaration
[PhoenixSetting("MaximumGroupDepth", "Maximum Group Depth", Hidden = true)]
public int MaximumGroupDepth { get; set; }
Property Value
Type Description
System.Int32
View Source

NewDeviceListFile

Gets or sets the new file to store the device list in, since Phoenix version 1.6.1.1045.

Declaration
[PhoenixSetting("NewDeviceListFile", "Device List File", SettingMetadata = SettingMetadata.File)]
public string NewDeviceListFile { get; set; }
Property Value
Type Description
System.String
View Source

ResolveIPAddress

Gets or sets a value indicating whether or not IP address for devices should be resolved to a DNS name.

Declaration
[PhoenixSetting("ResolveIPAddress", "Resolve IP Address To DNS Name On Devices")]
public bool ResolveIPAddress { get; set; }
Property Value
Type Description
System.Boolean
View Source

SelectFirstWhenEmpty

Gets or sets a value indicating whether or not the first device loaded on startup is automatically selected.

Declaration
[PhoenixSetting("SelectFirstWhenEmpty", "Select First Device On Startup")]
public bool SelectFirstWhenEmpty { get; set; }
Property Value
Type Description
System.Boolean
  • View Source
In This Article
Back to top Generated by DocFX