ViewDataDictionary.Remove Method (String)
Removes the element from the collection using the specified key.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration Public Function Remove ( _ key As String _ ) As Boolean 'Usage Dim instance As ViewDataDictionary Dim key As String Dim returnValue As Boolean returnValue = instance.Remove(key)
Parameters
- key
- Type: System.String
The key of the element to remove.
Return Value
Type: System.Booleantrue if the element is successfully removed; otherwise, false. This method also returns false if key was not found in the original collection.
Implements
IDictionary(Of TKey, TValue).Remove(TKey)| Exception | Condition |
|---|---|
| NotSupportedException | The collection is read-only. |
| ArgumentNullException | key is Nothing. |
Show: