Interface IEntryProcessorResult
Returns updated data or exception after execution of entry processor.
Namespace:
Assembly: Alachisoft.NCache.Runtime.dll
Syntax
public interface IEntryProcessorResult
Exception
Holds internal or external exception.
Declaration
Exception Exception { get; }
Property Value
Type | Description |
---|---|
System.Exception |
IsSuccessful
True if no internal or external exception has been thrown by the processer. IEntryProcesser results will be returned only if process executon has been successful.
Declaration
bool IsSuccessful { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Key
Returns the key for cache entry.
Declaration
string Key { get; }
Property Value
Type | Description |
---|---|
System.String |
Value
Returns the custom result of IEntryProcessor.
Declaration
object Value { get; }
Property Value
Type | Description |
---|---|
System.Object |