| WikiReadOnlyDictionaryIDictionaryString, JsonElementRemove 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 bool IDictionary<string, JsonElement>.Remove(
string key
)
Private Function Remove (
key As String
) As Boolean Implements IDictionary(Of String, JsonElement).Remove
Dim instance As WikiReadOnlyDictionary
Dim key As String
Dim returnValue As Boolean
returnValue = CType(instance, IDictionary(Of String, JsonElement)).Remove(key)
private:
virtual bool Remove(
String^ key
) sealed = IDictionary<String^, JsonElement>::Remove
private abstract Remove :
key : string -> bool
private override Remove :
key : string -> bool
Parameters
- key String
- The key of the element to remove.
Return Value
Boolean if the element is successfully removed; otherwise,
. This method also returns
if
key was not found in the original
IDictionaryTKey, TValue.
Implements
IDictionaryTKey, TValueRemove(TKey)Exceptions See Also