WebHostExtensions.RunAsync(IWebHost, CancellationToken) Method

Definition

Runs a web application and returns a Task that only completes when the token is triggered or shutdown is triggered.

public static System.Threading.Tasks.Task RunAsync (this Microsoft.AspNetCore.Hosting.IWebHost host, System.Threading.CancellationToken token = default);
static member RunAsync : Microsoft.AspNetCore.Hosting.IWebHost * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function RunAsync (host As IWebHost, Optional token As CancellationToken = Nothing) As Task

Parameters

host
IWebHost

The IWebHost to run.

token
CancellationToken

The token to trigger shutdown.

Returns

Applies to