JsonObject.GetAt(Int32) 方法

定义

获取指定索引的属性。

public:
 System::Collections::Generic::KeyValuePair<System::String ^, System::Text::Json::Nodes::JsonNode ^> GetAt(int index);
public System.Collections.Generic.KeyValuePair<string,System.Text.Json.Nodes.JsonNode?> GetAt (int index);
member this.GetAt : int -> System.Collections.Generic.KeyValuePair<string, System.Text.Json.Nodes.JsonNode>
Public Function GetAt (index As Integer) As KeyValuePair(Of String, JsonNode)

参数

index
Int32

要获取的对的从零开始的索引。

返回

指定索引处的属性作为键/值对。

例外

index 小于 0 或大于或等于 Count

适用于