Checks to see if an item with the given key 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 ContainsKey(
	T key
)
Visual Basic (Declaration)
Public Function ContainsKey ( _
	key As T _
) As Boolean
Visual C++
public:
virtual bool ContainsKey(
	T key
) sealed

Parameters

key
Type: T
Key to check dictionary for.

Return Value

Returns true if there is an item with the given key in the dictionary.

Implements

IDictionary<(Of <(TKey, TValue>)>)..::.ContainsKey(TKey)

See Also