WindowsServiceLifetimeHostBuilderExtensions.UseWindowsService 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
UseWindowsService(IHostBuilder) |
호스트 수명을 WindowsServiceLifetime 설정하고 애플리케이션 이름을 기본 원본 이름으로 사용하여 이벤트 로그에 로깅을 사용하도록 설정합니다. |
UseWindowsService(IHostBuilder, Action<WindowsServiceLifetimeOptions>) |
호스트 수명을 WindowsServiceLifetime 설정하고 애플리케이션 이름을 기본 원본 이름으로 사용하여 이벤트 로그에 로깅을 사용하도록 설정합니다. |
UseWindowsService(IHostBuilder)
호스트 수명을 WindowsServiceLifetime 설정하고 애플리케이션 이름을 기본 원본 이름으로 사용하여 이벤트 로그에 로깅을 사용하도록 설정합니다.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::Extensions::Hosting::IHostBuilder ^ UseWindowsService(Microsoft::Extensions::Hosting::IHostBuilder ^ hostBuilder);
public static Microsoft.Extensions.Hosting.IHostBuilder UseWindowsService (this Microsoft.Extensions.Hosting.IHostBuilder hostBuilder);
static member UseWindowsService : Microsoft.Extensions.Hosting.IHostBuilder -> Microsoft.Extensions.Hosting.IHostBuilder
<Extension()>
Public Function UseWindowsService (hostBuilder As IHostBuilder) As IHostBuilder
매개 변수
- hostBuilder
- IHostBuilder
작동할 IHostBuilder.
반환
연결에 대한 hostBuilder
인스턴스입니다.
설명
이는 컨텍스트 인식이며 프로세스가 Windows 서비스로 실행되고 있는 것을 감지하는 경우에만 활성화됩니다.
적용 대상
UseWindowsService(IHostBuilder, Action<WindowsServiceLifetimeOptions>)
호스트 수명을 WindowsServiceLifetime 설정하고 애플리케이션 이름을 기본 원본 이름으로 사용하여 이벤트 로그에 로깅을 사용하도록 설정합니다.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::Extensions::Hosting::IHostBuilder ^ UseWindowsService(Microsoft::Extensions::Hosting::IHostBuilder ^ hostBuilder, Action<Microsoft::Extensions::Hosting::WindowsServiceLifetimeOptions ^> ^ configure);
public static Microsoft.Extensions.Hosting.IHostBuilder UseWindowsService (this Microsoft.Extensions.Hosting.IHostBuilder hostBuilder, Action<Microsoft.Extensions.Hosting.WindowsServiceLifetimeOptions> configure);
static member UseWindowsService : Microsoft.Extensions.Hosting.IHostBuilder * Action<Microsoft.Extensions.Hosting.WindowsServiceLifetimeOptions> -> Microsoft.Extensions.Hosting.IHostBuilder
<Extension()>
Public Function UseWindowsService (hostBuilder As IHostBuilder, configure As Action(Of WindowsServiceLifetimeOptions)) As IHostBuilder
매개 변수
- hostBuilder
- IHostBuilder
작동할 IHostBuilder.
- configure
- Action<WindowsServiceLifetimeOptions>
제공된 WindowsServiceLifetimeOptions구성하는 Action<T>.
반환
연결에 대한 hostBuilder
인스턴스입니다.
설명
이는 컨텍스트 인식이며 프로세스가 Windows 서비스로 실행되고 있는 것을 감지하는 경우에만 활성화됩니다.
적용 대상
.NET