| WikiReadOnlyDictionaryItem Property |
This is preliminary documentation and is subject to change.
Tries to get the value of the specified property.
Namespace: WikiClientLibrary.InfrastructuresAssembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax public JsonElement this[
string key
] { get; set; }
Public Default Property Item (
key As String
) As JsonElement
Get
Set
Dim instance As WikiReadOnlyDictionary
Dim key As String
Dim value As JsonElement
value = instance(key)
instance(key) = value
public:
virtual property JsonElement default[String^ key] {
JsonElement get (String^ key) sealed;
void set (String^ key, JsonElement value) sealed;
}
abstract Item : JsonElement with get, set
override Item : JsonElement with get, set
Parameters
- key String
- The property name.
Return Value
JsonElementA clone of property value, OR
null if such property cannot be found.
Implements
IDictionaryTKey, TValueItemTKeySee Also