| WikiReadOnlyDictionaryTryGetValue Method |
This is preliminary documentation and is subject to change.
Gets the value associated with the specified key.
Namespace: WikiClientLibrary.InfrastructuresAssembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax public bool TryGetValue(
string key,
out JsonElement value
)
Public Function TryGetValue (
key As String,
<OutAttribute> ByRef value As JsonElement
) As Boolean
Dim instance As WikiReadOnlyDictionary
Dim key As String
Dim value As JsonElement
Dim returnValue As Boolean
returnValue = instance.TryGetValue(key,
value)
public:
virtual bool TryGetValue(
String^ key,
[OutAttribute] JsonElement% value
) sealed
abstract TryGetValue :
key : string *
value : JsonElement byref -> bool
override TryGetValue :
key : string *
value : JsonElement byref -> bool
Parameters
- key String
- The key whose value to get.
- value JsonElement
- When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.
Return Value
Boolean if the object that implements
IDictionaryTKey, TValue contains an element with the specified key; otherwise,
.
Implements
IDictionaryTKey, TValueTryGetValue(TKey, TValue)Exceptions See Also