Class SettingInformation
Contains information about a device configuration setting.
Inheritance
System.Object
SettingInformation
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.DeviceConfiguration
Assembly: Phoenix.DeviceConfiguration.dll
Syntax
public class SettingInformation
Constructors
View SourceSettingInformation(String, String)
Initializes a new instance of the SettingInformation class.
Declaration
public SettingInformation(string name, string deviceTypeName)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the setting. |
System.String | deviceTypeName | The device type name for the device this setting instance operates on. |
Properties
View SourceCanFix
Gets a value indicating whether this setting has a fix method.
Declaration
public bool CanFix { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
CheckMethodInfo
Gets or sets the MethodInfo for the check setting method.
Declaration
public MethodInfo CheckMethodInfo { get; set; }
Property Value
Type | Description |
---|---|
System.Reflection.MethodInfo |
DeviceTypeName
Gets the device type name for this instance of a setting.
Declaration
public string DeviceTypeName { get; }
Property Value
Type | Description |
---|---|
System.String |
FixMethodInfo
Gets or sets the MethodInfo for the fix setting method.
Declaration
public MethodInfo FixMethodInfo { get; set; }
Property Value
Type | Description |
---|---|
System.Reflection.MethodInfo |
SettingName
Gets the setting name.
Declaration
public string SettingName { get; }
Property Value
Type | Description |
---|---|
System.String |