ModelBinderDictionary.Contains Method
Determines whether the model binder dictionary contains a specified value.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration Public Function Contains ( _ item As KeyValuePair(Of Type, IModelBinder) _ ) As Boolean 'Usage Dim instance As ModelBinderDictionary Dim item As KeyValuePair(Of Type, IModelBinder) Dim returnValue As Boolean returnValue = instance.Contains(item)
Parameters
- item
- Type: System.Collections.Generic.KeyValuePair(Of Type, IModelBinder)
The object to locate in the ICollection(Of T) object.
Return Value
Type: System.Booleantrue if item is found in the model binder dictionary; otherwise, false.
Implements
ICollection(Of T).Contains(T)
Show: