Show / Hide Table of Contents

Interface ICacheEntry

A cache entry (key-value pair).

Namespace: Tangosol.Net.Cache
Assembly: Coherence.dll
Syntax
public interface ICacheEntry

Properties

Key

Gets the key corresponding to this entry.

Declaration
object Key { get; }
Property Value
Type Description
object

The key corresponding to this entry; may be null if the underlying dictionary supports null keys.

Value

Gets or sets the value corresponding to this entry.

Declaration
object Value { get; set; }
Property Value
Type Description
object

The value corresponding to this entry; may be null if the value is null or if the entry does not exist in the cache.

In this article
Back to top Copyright © 2000, 2024, Oracle and/or its affiliates.