Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Locate an LocalCache..::..Entry in the cache based on its key.

Namespace: Tangosol.Net.Cache
Assembly: Coherence (in Coherence.dll) Version: 12.2.1.4014 (12.2.1.4014)

Syntax

C#
protected internal virtual LocalCache..::..Entry PeekEntryInternal(
	Object key
)

Parameters

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

Return Value

The Entry or null if the entry is not found in the cache.

Remarks

Unlike the GetEntryInternal(Object) method, this method does not remove expired entries from the cache.

p

This method should only be called while holding a read or write lock.

See Also