Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Removes the entry for the specified key only if it is currently mapped to the specified value.

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

Syntax

C#
public static Object Remove(
	this IInvocableCache invocable,
	Object key,
	Object value
)

Parameters

invocable
Type: Tangosol.Net.Cache..::..IInvocableCache
The interface it extends.
key
Type: System..::..Object
Key with which the specified value is associated.
value
Type: System..::..Object
Value expected to be associated with the specified key.

Return Value

True if the value was removed.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IInvocableCache. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also