Show / Hide Table of Contents

Interface ICacheEntry

A cache entry (key-value pair).

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

Properties

| Improve this Doc View Source

Key

Gets the key corresponding to this entry.

Declaration
object Key { get; }
Property Value
Type Description
System.Object

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

| Improve this Doc View Source

Value

Gets or sets the value corresponding to this entry.

Declaration
object Value { get; set; }
Property Value
Type Description
System.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.

  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © 2000, 2020, Oracle and/or its affiliates. All rights reserved.