Returns whether the key exists within the collection.

Namespace: DatabaseObjects.Generic
Assembly: DatabaseObjects (in DatabaseObjects.dll) Version: 3.8.1.0

Syntax

C#
public virtual bool Exists(
	TKey Key
)
Visual Basic
Public Overridable Function Exists ( _
	Key As TKey _
) As Boolean
Visual C++
public:
virtual bool Exists(
	TKey Key
)

Parameters

Key
Type: TKey

[Missing <param name="Key"/> documentation for "M:DatabaseObjects.Generic.DatabaseObjectsListKeyed`2.Exists(`1)"]

Return Value

[Missing <returns> documentation for "M:DatabaseObjects.Generic.DatabaseObjectsListKeyed`2.Exists(`1)"]

Remarks

This function onforwards a call to DatabaseObjects.ObjectExists().

See Also