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