| WikiReadOnlyDictionaryIDictionaryString, JsonElementAdd Method |
This is preliminary documentation and is subject to change.
Namespace: WikiClientLibrary.InfrastructuresAssembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax void IDictionary<string, JsonElement>.Add(
string key,
JsonElement value
)
Private Sub Add (
key As String,
value As JsonElement
) Implements IDictionary(Of String, JsonElement).Add
Dim instance As WikiReadOnlyDictionary
Dim key As String
Dim value As JsonElement
CType(instance, IDictionary(Of String, JsonElement)).Add(key,
value)
private:
virtual void Add(
String^ key,
JsonElement value
) sealed = IDictionary<String^, JsonElement>::Add
private abstract Add :
key : string *
value : JsonElement -> unit
private override Add :
key : string *
value : JsonElement -> unit
Parameters
- key String
- The object to use as the key of the element to add.
- value JsonElement
- The object to use as the value of the element to add.
Implements
IDictionaryTKey, TValueAdd(TKey, TValue)Exceptions See Also