WebHostWindowsServiceExtensions.RunAsService(IWebHost) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在 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)
參數
範例
此範例示範如何使用 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();
}
}