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

取得するペアの 0 から始まるインデックス。

戻り値

キーと値のペアとして指定したインデックス位置にあるプロパティ。

例外

index が 0 未満か、Count以上です。

適用対象