Checks whether an item is contained in the heap.

Declaration Syntax

Public Overridable Function Contains( _
	ByVal item As T _
) As Boolean
public virtual bool Contains(
	T item
);
public: virtual bool Contains(
	T item
);
public function Contains(
	item : T
) : Boolean;

Parameters

item
The item to look for 

Return Value

true
if the item is contained in the heap, otherwise
false
.

Requirements

Namespace: Eas.WebCrawler.Common.Collections
Assembly: Eas.WebCrawler.Common (eas.webcrawler.common.dll)

See Also

BinaryHeap`1 Class | BinaryHeap`1 Members | Eas.WebCrawler.Common.Collections Namespace