JsonObject.IndexOf(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定对象中特定属性名称的索引。
public:
int IndexOf(System::String ^ propertyName);
public int IndexOf (string propertyName);
member this.IndexOf : string -> int
Public Function IndexOf (propertyName As String) As Integer
参数
- propertyName
- String
要查找的属性名称。
返回
找到 propertyName
的索引;否则为 -1。
例外
propertyName
null
。