Condividi tramite


WebHostExtensions.Run Metodo

Definizione

Overload

Run(IWebHost)

Esegue un'applicazione Web e blocca il thread chiamante fino all'arresto dell'host.

Run(IWebHost, CancellationToken)

Esegue un'applicazione Web e blocca il thread chiamante finché non viene attivato o arrestato il token.

Run(IWebHost)

Origine:
WebHostExtensions.cs
Origine:
WebHostExtensions.cs
Origine:
WebHostExtensions.cs

Esegue un'applicazione Web e blocca il thread chiamante fino all'arresto dell'host.

public:
[System::Runtime::CompilerServices::Extension]
 static void Run(Microsoft::AspNetCore::Hosting::IWebHost ^ host);
public static void Run (this Microsoft.AspNetCore.Hosting.IWebHost host);
static member Run : Microsoft.AspNetCore.Hosting.IWebHost -> unit
<Extension()>
Public Sub Run (host As IWebHost)

Parametri

host
IWebHost

Oggetto IWebHost da eseguire.

Si applica a

Run(IWebHost, CancellationToken)

Esegue un'applicazione Web e blocca il thread chiamante finché non viene attivato o arrestato il token.

public:
[System::Runtime::CompilerServices::Extension]
 static void Run(Microsoft::AspNetCore::Hosting::IWebHost ^ host, System::Threading::CancellationToken token);
public static void Run (this Microsoft.AspNetCore.Hosting.IWebHost host, System.Threading.CancellationToken token);
static member Run : Microsoft.AspNetCore.Hosting.IWebHost * System.Threading.CancellationToken -> unit
<Extension()>
Public Sub Run (host As IWebHost, token As CancellationToken)

Parametri

host
IWebHost

Oggetto IWebHost da eseguire.

token
CancellationToken

Token per l'attivazione dell'arresto.

Si applica a