Returns a value that indicates whether the indexed collection contains an item with the given key value.

Implements IIndexScanner(T).ContainsKey(object)

Namespace:  C1.LiveLinq.Indexing
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
public bool ContainsKey(
	Object key
)
Visual Basic
Public Function ContainsKey ( _
	key As Object _
) As Boolean

Parameters

key
Type: System..::..Object
The key value to search for.

Return Value

true if the indexed collection contains an element with the specified key value; otherwise, false.

Implements

IIndexScanner<(Of <(<'T>)>)>..::..ContainsKey(Object)

See Also