JsonArray.IndexOf(IJsonValue, UInt32) 方法

定义

搜索 JsonValue 对象,并返回 JsonArray 中第一个匹配项的从零开始的索引。

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

参数

value
IJsonValue

要查找的 IJsonValue

index
UInt32

unsigned int

uint32_t

如果找到, 则为 JsonArray 中项的第一个匹配项的从零开始的索引;否则为 –1。

返回

Boolean

bool

返回一个 布尔 值,该值指示是否找到了 值的 匹配项。

实现

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

适用于