Class DelegateResult<TResult>
- Namespace
- Polly
- Assembly
- Polly.dll
The captured outcome of executing an individual Func<TResult>
public class DelegateResult<TResult>
Type Parameters
TResult
- Inheritance
-
DelegateResult<TResult>
- Inherited Members
Properties
Exception
Any exception thrown while executing the delegate. Will be null if policy executed without exception.
public Exception Exception { get; }
Property Value
Result
The result of executing the delegate. Will be default(TResult) if an exception was thrown.
public TResult Result { get; }
Property Value
- TResult