Catatan
Akses ke halaman ini memerlukan otorisasi. Anda dapat mencoba masuk atau mengubah direktori.
Akses ke halaman ini memerlukan otorisasi. Anda dapat mencoba mengubah direktori.
Removes the first occurrence of the specified element from the model binder dictionary.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Public Function Remove ( _
item As KeyValuePair(Of Type, IModelBinder) _
) As Boolean
public bool Remove(
KeyValuePair<Type, IModelBinder> item
)
public:
virtual bool Remove(
KeyValuePair<Type^, IModelBinder^> item
) sealed
Parameters
- item
Type: System.Collections.Generic.KeyValuePair<Type, IModelBinder>
The object to remove from the ICollection<T> object.
Return Value
Type: System.Boolean
true if item was successfully removed from the model binder dictionary; otherwise, false. This method also returns false if item is not found in the model binder dictionary.
Implements
Exceptions
| Exception | Condition |
|---|---|
| NotSupportedException | The ICollection<T> object is read-only. |