WebHostExtensions Class

Definition

Contains extensions for managing the lifecycle of an IWebHost.

public ref class WebHostExtensions abstract sealed
public static class WebHostExtensions
type WebHostExtensions = class
Public Module WebHostExtensions
Inheritance
WebHostExtensions

Methods

Run(IWebHost)

Runs a web application and block the calling thread until host shutdown.

Run(IWebHost, CancellationToken)

Runs a web application and block the calling thread until token is triggered or shutdown is triggered.

RunAsync(IWebHost, CancellationToken)

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

StopAsync(IWebHost, TimeSpan)

Attempts to gracefully stop the host with the given timeout.

WaitForShutdown(IWebHost)

Block the calling thread until shutdown is triggered via Ctrl+C or SIGTERM.

WaitForShutdownAsync(IWebHost, CancellationToken)

Returns a Task that completes when shutdown is triggered via the given token, Ctrl+C or SIGTERM.

Applies to