FakeHost.StartAsync(CancellationToken) Method

Definition

Starts the program.

public System.Threading.Tasks.Task StartAsync (System.Threading.CancellationToken cancellationToken = default);
abstract member StartAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.StartAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function StartAsync (Optional cancellationToken As CancellationToken = Nothing) As Task

Parameters

cancellationToken
CancellationToken

Used to abort program start.

Returns

A Task that will be completed when the IHost starts.

Implements

Exceptions

The cancellation token was canceled. This exception is stored into the returned task.

Remarks

If no cancellation token is given, a new one using StartUpTimeout is used.

Applies to