Evaluate the deferred, returning the results.
Assembly: Epic.Query.Object
Declaration Syntax
C# |
public static TResult Evaluate<TResult>( this IDeferred<TResult> deferred )
Generic Template Parameters
- TResult
- The type of the results.
Parameters
- deferred (IDeferred<(Of <(<'TResult>)>)>)
- A deferred TResult.
Return Value
A TResult resulting from the deferral.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IDeferred<(Of <(<'TResult>)>)>. When you use instance method syntax to call this method, omit the first parameter.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | deferred
is nullNothingnullptr. |
DeferredEvaluationException | The deferred evaluation failed. |