Class ExecutionResult<T>
Class representing the result of a safe method execution.
Inheritance
System.Object
ExecutionResult<T>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace:Extend
Assembly:Extend.dll
Syntax
public class ExecutionResult<T> : IExecutionResult<T>
Type Parameters
Name | Description |
---|---|
T |
Properties
| Improve this Doc View SourceException
Gets or sets the exception.
Declaration
public Exception Exception { get; set; }
Property Value
Type | Description |
---|---|
System.Exception | The exception. |
Implements
| Improve this Doc View SourceResult
Gets or sets the result.
Declaration
public T Result { get; set; }
Property Value
Type | Description |
---|---|
T | The result. |