ServiceController 建構函式
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 ServiceController 類別的新執行個體。
ServiceController() |
初始化 ServiceController 類別的新執行個體,這個執行個體未與特定服務相關聯。 |
ServiceController(String) |
初始化 ServiceController 類別的新執行個體,這個執行個體與本機電腦上現有的服務相關聯。 |
ServiceController(String, String) |
初始化 ServiceController 類別的新執行個體,這個執行個體與指定電腦上現有的服務相關聯。 |
初始化 ServiceController 類別的新執行個體,這個執行個體未與特定服務相關聯。
public:
ServiceController();
public ServiceController ();
Public Sub New ()
適用於
.NET 9 及其他版本
產品 | 版本 |
---|---|
.NET | 6, 7, 8, 9 |
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0 |
初始化 ServiceController 類別的新執行個體,這個執行個體與本機電腦上現有的服務相關聯。
public:
ServiceController(System::String ^ name);
public ServiceController (string name);
new System.ServiceProcess.ServiceController : string -> System.ServiceProcess.ServiceController
Public Sub New (name As String)
參數
- name
- String
向系統識別服務的名稱。 這也可以是服務的顯示名稱。
例外狀況
name
無效。
範例
下列範例示範如何使用 ServiceController.ServiceController(String) 建構函式來建立 ServiceController 用來控制範例服務的物件。 此範例是針對 類別提供的較大範例的 ServiceController 一部分。
// Display properties for the Simple Service sample
// from the ServiceBase example.
ServiceController sc = new ServiceController("Simple Service");
Console.WriteLine("Status = " + sc.Status);
Console.WriteLine("Can Pause and Continue = " + sc.CanPauseAndContinue);
Console.WriteLine("Can ShutDown = " + sc.CanShutdown);
Console.WriteLine("Can Stop = " + sc.CanStop);
' Display properties for the Simple Service sample
' from the ServiceBase example
Dim sc As New ServiceController("Simple Service")
Console.WriteLine("Status = " + sc.Status.ToString())
Console.WriteLine("Can Pause and Continue = " + _
sc.CanPauseAndContinue.ToString())
Console.WriteLine("Can ShutDown = " + sc.CanShutdown.ToString())
Console.WriteLine("Can Stop = " + sc.CanStop.ToString())
適用於
.NET 9 及其他版本
產品 | 版本 |
---|---|
.NET | Core 1.0, Core 1.1, 6, 7, 8, 9 |
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0 |
初始化 ServiceController 類別的新執行個體,這個執行個體與指定電腦上現有的服務相關聯。
public:
ServiceController(System::String ^ name, System::String ^ machineName);
public ServiceController (string name, string machineName);
new System.ServiceProcess.ServiceController : string * string -> System.ServiceProcess.ServiceController
Public Sub New (name As String, machineName As String)
參數
- name
- String
向系統識別服務的名稱。 這也可以是服務的顯示名稱。
- machineName
- String
服務所在的電腦。
例外狀況
備註
machineName
針對 參數,您可以使用 「.」 來代表本機電腦。
適用於
.NET 9 及其他版本
產品 | 版本 |
---|---|
.NET | Core 1.0, Core 1.1, 6, 7, 8, 9 |
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0 |