Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Removes the first occurrence of a specified object from the collection.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Public Function Remove ( _
item As KeyValuePair(Of String, Object) _
) As Boolean
public bool Remove(
KeyValuePair<string, Object> item
)
public:
virtual bool Remove(
KeyValuePair<String^, Object^> item
) sealed
Parameters
- item
Type: System.Collections.Generic.KeyValuePair<String, Object>
The object to remove from the collection.
Return Value
Type: System.Boolean
true if item was successfully removed from the collection; otherwise, false. This method also returns false if item is not found in the collection.
Implements
Exceptions
| Exception | Condition |
|---|---|
| NotSupportedException | The collection is read-only. |