WebHostWindowsServiceExtensions.RunAsService(IWebHost) メソッド

定義

Windows サービス内で指定された Web アプリケーションを実行し、サービスが停止するまでブロックします。

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

パラメーター

host
IWebHost

Windows サービスでホストする のインスタンス IWebHost

この例では、 の使用方法 RunAsService(IWebHost)を示します。

public class Program
{
    public static void Main(string[] args)
    {
        var config = WebHostConfiguration.GetDefault(args);

        var host = new WebHostBuilder()
            .UseConfiguration(config)
            .Build();

        // This call will block until the service is stopped.
        host.RunAsService();
    }
}

適用対象