다음을 통해 공유


ServiceInstaller.Description 속성

정의

서비스에 대한 설명을 가져오거나 설정합니다.

public:
 property System::String ^ Description { System::String ^ get(); void set(System::String ^ value); };
[System.Runtime.InteropServices.ComVisible(false)]
[System.ServiceProcess.ServiceProcessDescription("ServiceInstallerDescription")]
public string Description { get; set; }
[<System.Runtime.InteropServices.ComVisible(false)>]
[<System.ServiceProcess.ServiceProcessDescription("ServiceInstallerDescription")>]
member this.Description : string with get, set
Public Property Description As String

속성 값

String

서비스에 대한 설명입니다. 기본값은 빈 문자열("")입니다.

특성

예제

다음 코드 예제에서는 새 Windows 서비스 애플리케이션에 대 한 설치 속성을 설정합니다. 이 예제에서는 서비스 이름, 표시 이름 및 설명 설정합니다. 이 예제에서는 서비스에 대 한 설치 속성에 할당 한 후 추가 합니다 ServiceInstaller 개체는 Installers 컬렉션.

simpleServiceProcessInstaller = new ServiceProcessInstaller();
simpleServiceInstaller = new ServiceInstaller();

// Set the account properties for the service process.
simpleServiceProcessInstaller.Account = ServiceAccount.LocalService;

// Set the installation properties for the service.
// The ServiceInstaller.ServiceName must match the
// ServiceBase.ServiceName set in the service
// implementation that is installed by this installer.
simpleServiceInstaller.ServiceName = "SimpleService";

simpleServiceInstaller.DisplayName = "Simple Service";
simpleServiceInstaller.Description = "A simple service that runs on the local computer.";
simpleServiceInstaller.StartType = ServiceStartMode.Manual;

// Add the installers to the Installer collection.
Installers.Add(simpleServiceInstaller);
Installers.Add(simpleServiceProcessInstaller);
' Start the service.
Protected Overrides Sub OnStart(ByVal args() As String) 
    ' Start a separate thread that does the actual work.
    If workerThread Is Nothing OrElse(workerThread.ThreadState And System.Threading.ThreadState.Unstarted Or System.Threading.ThreadState.Stopped) <> 0 Then
        Trace.WriteLine(DateTime.Now.ToLongTimeString() + " - Starting the service worker thread.", "OnStart")
        
        workerThread = New Thread(New ThreadStart(AddressOf ServiceWorkerMethod))
        workerThread.Start()
    End If
    If Not (workerThread Is Nothing) Then
        Trace.WriteLine(DateTime.Now.ToLongTimeString() + " - Worker thread state = " + workerThread.ThreadState.ToString(), "OnStart")
    End If

End Sub

설명

사용 된 Description 속성을 사용자에 게 설치 된 서비스의 목적을 설명 합니다. 사용자 설치 된 서비스에 대 한 세부 정보를 표시 하는 애플리케이션에서 서비스 설명을 볼 수 있습니다.

Windows XP를 사용 하는 서비스 제어 명령줄 유틸리티 (Sc.exe)를 사용 하 여 서비스 설명을 볼 수 있습니다 또는 내에서 서비스 설명을 볼 수 있습니다 예를 들어 합니다 Services 의 노드는 컴퓨터 관리 콘솔.

적용 대상

추가 정보