Click or drag to resize
RegionEntry Class

Note: This API is now obsolete.

An object in a region that represents an entry, that is, a key-value pair.
Inheritance Hierarchy
SystemObject
  [T:GemStone.GemFire.Cache.Internal.SBWrap<gemfire::RegionEntry>]
    GemStone.GemFire.CacheRegionEntry

Namespace: GemStone.GemFire.Cache
Assembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntax
[ObsoleteAttribute("Use classes and APIs from the GemStone.GemFire.Cache.Generic namespace")]
public sealed class RegionEntry : [T:GemStone.GemFire.Cache.Internal.SBWrap<gemfire::RegionEntry>]

The RegionEntry type exposes the following members.

Properties
  NameDescription
Public propertyIsDestroyed
True if this entry has been destroyed.
Public propertyKey
Returns the key for this entry.
Public propertyRegion
Returns the region that contains this entry.
Public propertyStatistics
Returns the statistics for this entry.
Public propertyValue
Returns the value of this entry in the local cache. Does not invoke an ICacheLoader, does not do a netSearch, netLoad, etc.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks
This object's operations are not distributed, do not acquire any locks, and do not affect CacheStatistics. Unless otherwise noted, all of these methods throw a CacheClosedException if the cache is closed at the time of invocation, or an EntryDestroyedException if the entry has been destroyed. Call IsDestroyed to see if an entry has already been destroyed.
See Also