Checks to see if given item is present in the dictionary.

Namespace:  Endeca.Web.Url.Seo.Utility
Assembly:  Endeca.Web.Url.Seo (in Endeca.Web.Url.Seo.dll) Version: 2.1.1.0 (2.1.1.0)

Syntax

C#
public bool Contains(
	KeyValuePair<T, U> item
)
Visual Basic (Declaration)
Public Function Contains ( _
	item As KeyValuePair(Of T, U) _
) As Boolean
Visual C++
public:
virtual bool Contains(
	KeyValuePair<T, U> item
) sealed

Parameters

item
Type: System.Collections.Generic..::.KeyValuePair<(Of <(T, U>)>)
Item to check dictionary for.

Return Value

Returns true if the given KeyValuePair<(Of <(TKey, TValue>)>) is present in the dictionary.

Implements

ICollection<(Of <(T>)>)..::.Contains(T)

See Also