JsonNode.Item[] 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Item[Int32] |
在指定的索引位置上取得或設定項目。 |
Item[String] |
取得或設定具有指定屬性名稱的專案。
如果找不到 屬性, |
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
要取得或設定的以零為起始元素索引。
屬性值
例外狀況
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
要傳回的屬性名稱。
屬性值
例外狀況
propertyName
為 null
。
目前的 JsonNode 不是 JsonObject 。