共用方式為


PnpObjectCollection.IndexOf(PnpObject, UInt32) 方法

定義

重要

我們不再建議您使用 Windows.Devices.Enumeration.Pnp 命名空間中的類型。 相反地, Windows.Devices.Enumeration 命名空間中的類型會實作新式且更妥善維護的 Windows.Devices.Enumeration.Pnp功能超集合。

PnpObjectType的替代方法是Windows.Devices.Enumeration.DeviceInformationKind列舉,您可以將其當做參數傳遞至Windows.Devices.Enumeration API。 例如,當您建立PnpObjectWatcher時,不要使用PnpObjectType,而是在建立DeviceWatcher時使用DeviceInformationKind

擷取指定專案的索引。

public:
 virtual bool IndexOf(PnpObject ^ value, [Out] unsigned int & index) = IVectorView<PnpObject ^>::IndexOf;
bool IndexOf(PnpObject const& value, [Out] uint32_t & index);
public bool IndexOf(PnpObject value, out uint index);
Public Function IndexOf (value As PnpObject, ByRef index As UInteger) As Boolean

參數

value
PnpObject

在集合中尋找的值。

index
UInt32

unsigned int

uint32_t

如果找到,要尋找的專案索引。

傳回

Boolean

bool

如果找到具有指定值的專案,則為 True;否則為 False。

實作

M:Windows.Foundation.Collections.IVectorView1.IndexOf(0,System.UInt32@) M:Windows.Foundation.Collections.IVectorView1.IndexOf(0,unsigned int@) M:Windows.Foundation.Collections.IVectorView1.IndexOf(0,uint32_t@)

適用於