JsonObject.Insert(String, IJsonValue) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將新專案新增至 JsonObject。
public:
virtual bool Insert(Platform::String ^ key, IJsonValue ^ value) = IMap<Platform::String ^, IJsonValue ^>::Insert;
bool Insert(winrt::hstring const& key, IJsonValue const& value);
public bool Insert(string key, IJsonValue value);
function insert(key, value)
Public Function Insert (key As String, value As IJsonValue) As Boolean
參數
- key
-
String
Platform::String
winrt::hstring
要插入的索引鍵。
- value
- IJsonValue
要插入的 IJsonValue 。
傳回
Boolean
bool
如果呼叫 方法已取代索引鍵已存在的值,則為 true;如果呼叫 方法已定義新的索引鍵,則為 false。