JsonNode.Item[] 屬性

定義

多載

Item[Int32]

在指定的索引位置上取得或設定項目。

Item[String]

取得或設定具有指定屬性名稱的專案。 如果找不到 屬性, null 則會傳回 。

Item[Int32]

在指定的索引位置上取得或設定項目。

public:
 property System::Text::Json::Nodes::JsonNode ^ default[int] { System::Text::Json::Nodes::JsonNode ^ get(int index); void set(int index, System::Text::Json::Nodes::JsonNode ^ value); };
public System.Text.Json.Nodes.JsonNode? this[int index] { get; set; }
member this.Item(int) : System.Text.Json.Nodes.JsonNode with get, set
Default Public Property Item(index As Integer) As JsonNode

參數

index
Int32

要取得或設定的以零為起始元素索引。

屬性值

JsonNode

例外狀況

index 小於 0 或 index 大於屬性數目。

適用於

Item[String]

取得或設定具有指定屬性名稱的專案。 如果找不到 屬性, null 則會傳回 。

public:
 property System::Text::Json::Nodes::JsonNode ^ default[System::String ^] { System::Text::Json::Nodes::JsonNode ^ get(System::String ^ propertyName); void set(System::String ^ propertyName, System::Text::Json::Nodes::JsonNode ^ value); };
public System.Text.Json.Nodes.JsonNode? this[string propertyName] { get; set; }
member this.Item(string) : System.Text.Json.Nodes.JsonNode with get, set
Default Public Property Item(propertyName As String) As JsonNode

參數

propertyName
String

要傳回的屬性名稱。

屬性值

JsonNode

例外狀況

propertyNamenull

適用於