PnpObjectCollection.First Method

Definition

Important

We no longer recommend that you use the types in the Windows.Devices.Enumeration.Pnp namespace. Instead, the types in the Windows.Devices.Enumeration namespace implement a modern, and better maintained, superset of the functionality of Windows.Devices.Enumeration.Pnp.

The alternative to PnpObjectType is the Windows.Devices.Enumeration.DeviceInformationKind enum, which you can pass as a parameter to Windows.Devices.Enumeration APIs. For example, instead of using PnpObjectType when you create a PnpObjectWatcher, use DeviceInformationKind when you create a DeviceWatcher.

Returns the iterator for iteration over the items in the collection.

public:
 virtual IIterator<PnpObject ^> ^ First() = IIterable<PnpObject ^>::First;
IIterator<PnpObject> First();
public IIterator<PnpObject> First();
function first()
Public Function First () As IIterator(Of PnpObject)

Returns

The iterator object. The iterator's current position is at the 0-index position, or at the end of the collection if the collection is empty.

Implements

Applies to