Show / Hide Table of Contents

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 Source

DeviceConfigEnlistmentChangedInfo()

Initializes a new instance of the DeviceConfigEnlistmentChangedInfo class.

Declaration
public DeviceConfigEnlistmentChangedInfo()
View Source

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 Source

Device

Gets or sets the device that is having configuration enlistment changes.

Declaration
public IDevice Device { get; set; }
Property Value
Type Description
IDevice
View Source

NewConfig

Gets or sets the new configuration the device was enlisted to.

Declaration
public IDeviceConfiguration NewConfig { get; set; }
Property Value
Type Description
IDeviceConfiguration
View Source

OldConfig

Gets or sets the old configuration the device was enlisted to.

Declaration
public IDeviceConfiguration OldConfig { get; set; }
Property Value
Type Description
IDeviceConfiguration
  • View Source
In This Article
Back to top Generated by DocFX