Note: This API is now obsolete.
An object in a region that represents an entry, that is, a key-value pair.
Inheritance HierarchySystemObject [T:GemStone.GemFire.Cache.Internal.SBWrap<gemfire::RegionEntry>] GemStone.GemFire.CacheRegionEntry
Namespace: GemStone.GemFire.CacheAssembly: 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>]
<ObsoleteAttribute("Use classes and APIs from the GemStone.GemFire.Cache.Generic namespace")>
Public NotInheritable Class RegionEntry
Inherits [T:GemStone.GemFire.Cache.Internal.SBWrap<gemfire::RegionEntry>]
[ObsoleteAttribute(L"Use classes and APIs from the GemStone.GemFire.Cache.Generic namespace")]
public ref class RegionEntry sealed : public [T:GemStone.GemFire.Cache.Internal.SBWrap<gemfire::RegionEntry>]
[<SealedAttribute>]
[<ObsoleteAttribute("Use classes and APIs from the GemStone.GemFire.Cache.Generic namespace")>]
type RegionEntry =
class
inherit [T:GemStone.GemFire.Cache.Internal.SBWrap<gemfire::RegionEntry>]
end
The RegionEntry type exposes the following members.
Properties
| Name | Description |
---|
 | IsDestroyed |
True if this entry has been destroyed.
|
 | Key |
Returns the key for this entry.
|
 | Region |
Returns the region that contains this entry.
|
 | Statistics |
Returns the statistics for this entry.
|
 | Value |
Returns the value of this entry in the local cache. Does not invoke
an ICacheLoader, does not do a netSearch, netLoad, etc.
|
Top
Methods
| Name | Description |
---|
 | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
 | GetHashCode | Serves as the default hash function. (Inherited from Object.) |
 | GetType | Gets the Type of the current instance. (Inherited from Object.) |
 | ToString | 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