Removes the given item from the dictionary. Returns false if the remove operation was unsuccessful.

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 Remove(
	KeyValuePair<T, U> item
)
Visual Basic (Declaration)
Public Function Remove ( _
	item As KeyValuePair(Of T, U) _
) As Boolean
Visual C++
public:
virtual bool Remove(
	KeyValuePair<T, U> item
) sealed

Parameters

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

Return Value

Returns true if remove operation was successful.

Implements

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

See Also