ServiceController 构造函数

定义

初始化 ServiceController 类的新实例。

重载

ServiceController()

初始化与特定服务不关联的 ServiceController 类的新实例。

ServiceController(String)

初始化与本地计算机上的现有服务关联的 ServiceController 类的新实例。

ServiceController(String, String)

初始化与指定计算机上的现有服务关联的 ServiceController 类的新实例。

ServiceController()

初始化与特定服务不关联的 ServiceController 类的新实例。

public:
 ServiceController();
public ServiceController ();
Public Sub New ()

适用于

ServiceController(String)

初始化与本地计算机上的现有服务关联的 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())

适用于

ServiceController(String, String)

初始化与指定计算机上的现有服务关联的 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

服务所驻留的计算机。

例外

name 无效。

  • 或 - machineName 无效。

注解

machineName对于参数,可以使用“.”来表示本地计算机。

适用于