JsonObject.Insert(String, IJsonValue) 方法

定义

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。

实现

适用于