Does an element exist at this entry in the collection?

Namespace:  NHibernate.Collection
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public MustOverride Function EntryExists ( _
	entry As Object, _
	i As Integer _
) As Boolean
C#
public abstract bool EntryExists(
	Object entry,
	int i
)
Visual C++
public:
virtual bool EntryExists(
	Object^ entry, 
	int i
) abstract
JavaScript
function entryExists(entry, i);

Parameters

entry
Type: System..::.Object
i
Type: System..::.Int32

Return Value

Implements

IPersistentCollection..::.EntryExists(Object, Int32)

See Also