Class DeviceConfigEnlistmentChangedInfo
Contains information about a device config enlistment change.
Inheritance
System.Object
DeviceConfigEnlistmentChangedInfo
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.Abstractions.DeviceConfiguration.dll
Syntax
public class DeviceConfigEnlistmentChangedInfo
Constructors
View SourceDeviceConfigEnlistmentChangedInfo()
Initializes a new instance of the DeviceConfigEnlistmentChangedInfo class.
Declaration
public DeviceConfigEnlistmentChangedInfo()
DeviceConfigEnlistmentChangedInfo(IDevice, IDeviceConfiguration, IDeviceConfiguration)
Initializes a new instance of the DeviceConfigEnlistmentChangedInfo class.
Declaration
public DeviceConfigEnlistmentChangedInfo(IDevice device, IDeviceConfiguration oldConfig, IDeviceConfiguration newConfig)
Parameters
Type | Name | Description |
---|---|---|
IDevice | device | The device having the config enlistment changed |
IDeviceConfiguration | oldConfig | The previous configuration the device was enlisted to (otherwise null) |
IDeviceConfiguration | newConfig | The new configuration the device was enlisted to (otherwise null) |
Properties
View SourceDevice
Gets or sets the device that is having configuration enlistment changes.
Declaration
public IDevice Device { get; set; }
Property Value
Type | Description |
---|---|
IDevice |
NewConfig
Gets or sets the new configuration the device was enlisted to.
Declaration
public IDeviceConfiguration NewConfig { get; set; }
Property Value
Type | Description |
---|---|
IDeviceConfiguration |
OldConfig
Gets or sets the old configuration the device was enlisted to.
Declaration
public IDeviceConfiguration OldConfig { get; set; }
Property Value
Type | Description |
---|---|
IDeviceConfiguration |