Show / Hide Table of Contents

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 Source

SettingInformation(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 Source

CanFix

Gets a value indicating whether this setting has a fix method.

Declaration
public bool CanFix { get; }
Property Value
Type Description
System.Boolean
View Source

CheckMethodInfo

Gets or sets the MethodInfo for the check setting method.

Declaration
public MethodInfo CheckMethodInfo { get; set; }
Property Value
Type Description
System.Reflection.MethodInfo
View Source

DeviceTypeName

Gets the device type name for this instance of a setting.

Declaration
public string DeviceTypeName { get; }
Property Value
Type Description
System.String
View Source

FixMethodInfo

Gets or sets the MethodInfo for the fix setting method.

Declaration
public MethodInfo FixMethodInfo { get; set; }
Property Value
Type Description
System.Reflection.MethodInfo
View Source

SettingName

Gets the setting name.

Declaration
public string SettingName { get; }
Property Value
Type Description
System.String
  • View Source
In This Article
Back to top Generated by DocFX