Show / Hide Table of Contents

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 Source

DeviceCollectionChangeInfo()

Initializes a new instance of the DeviceCollectionChangeInfo class.

Declaration
public DeviceCollectionChangeInfo()
View Source

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 Source

AddedDevices

Gets the list of added devices.

Declaration
public Collection<IDevice> AddedDevices { get; }
Property Value
Type Description
System.Collections.ObjectModel.Collection<IDevice>
View Source

RemovedDevices

Gets the list of removed devices.

Declaration
public Collection<IDevice> RemovedDevices { get; }
Property Value
Type Description
System.Collections.ObjectModel.Collection<IDevice>
  • View Source
In This Article
Back to top Generated by DocFX