Class DeviceCollectionChangeInfo
Contains information about a device collection change.
Inheritance
System.Object
DeviceCollectionChangeInfo
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.Devices
Assembly: Phoenix.Abstractions.Devices.dll
Syntax
public class DeviceCollectionChangeInfo
Constructors
View SourceDeviceCollectionChangeInfo()
Initializes a new instance of the DeviceCollectionChangeInfo class.
Declaration
public DeviceCollectionChangeInfo()
DeviceCollectionChangeInfo(Collection<IDevice>, Collection<IDevice>)
Initializes a new instance of the DeviceCollectionChangeInfo class.
Declaration
public DeviceCollectionChangeInfo(Collection<IDevice> removedDevices, Collection<IDevice> addedDevices)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.ObjectModel.Collection<IDevice> | removedDevices | A list of the devices that have been removed from the selection list. |
System.Collections.ObjectModel.Collection<IDevice> | addedDevices | A list of the devices that have been added to the selection list. |
Properties
View SourceAddedDevices
Gets the list of added devices.
Declaration
public Collection<IDevice> AddedDevices { get; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.Collection<IDevice> |
RemovedDevices
Gets the list of removed devices.
Declaration
public Collection<IDevice> RemovedDevices { get; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.Collection<IDevice> |