Class DeviceManagementSettings
Settings class for the Device Management module.
Inherited Members
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 SourceDeviceManagementSettings()
Initializes a new instance of the DeviceManagementSettings class.
Declaration
public DeviceManagementSettings()
Properties
View SourceDeviceListFile
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 |
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> |
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 |
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 |
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 |
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 |