Interface IExecutionResult<T>
Interface representing the result of a safe method execution.
Namespace:Extend
Assembly:Extend.dll
Syntax
public interface IExecutionResult<T>
Type Parameters
| Name | Description |
|---|---|
| T |
Properties
| Improve this Doc View SourceException
Gets or sets the exception.
Declaration
Exception Exception { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Exception | The exception. |
Result
Gets or sets the result.
Declaration
T Result { get; set; }
Property Value
| Type | Description |
|---|---|
| T | The result. |