Interface ICanPerformThen
- Namespace
- CSF.Screenplay.Actors
- Assembly
- CSF.Screenplay.Abstractions.dll
An actor which is able to perform in the Then phase of a IPerformance.
public interface ICanPerformThen
- Extension Methods
Remarks
This interface is conceptually identical to ICanPerform, except that the nomenclature of its methods is written in the future tense, as is best pratice for the Then phase of a performance.
Methods
Should(IPerformable, CancellationToken)
Performs an action or task which returns no result.
ValueTask Should(IPerformable performable, CancellationToken cancellationToken = default)
Parameters
performable
IPerformableThe performable item
cancellationToken
CancellationTokenAn optional token to cancel the performable
Returns
- ValueTask
A task which completes when the performable is complete
Should(IPerformableWithResult, CancellationToken)
Performs an action or task which returns an untyped result.
ValueTask<object> Should(IPerformableWithResult performable, CancellationToken cancellationToken = default)
Parameters
performable
IPerformableWithResultThe performable item
cancellationToken
CancellationTokenAn optional token to cancel the performable
Returns
Should<T>(IPerformableWithResult<T>, CancellationToken)
Performs an action or task which returns a strongly typed result.
ValueTask<T> Should<T>(IPerformableWithResult<T> performable, CancellationToken cancellationToken = default)
Parameters
performable
IPerformableWithResult<T>The performable item
cancellationToken
CancellationTokenAn optional token to cancel the performable
Returns
- ValueTask<T>
A task which exposes a result when the performable is complete
Type Parameters
T
The result type