ServiceInstaller.StartType 属性
指示启动此服务的方式和时间。
**命名空间:**System.ServiceProcess
**程序集:**System.ServiceProcess(在 system.serviceprocess.dll 中)
声明
Public Property StartType As ServiceStartMode
用法
Dim instance As ServiceInstaller
Dim value As ServiceStartMode
value = instance.StartType
instance.StartType = value
public ServiceStartMode StartType { get; set; }
public:
property ServiceStartMode StartType {
ServiceStartMode get ();
void set (ServiceStartMode value);
}
/** @property */
public ServiceStartMode get_StartType ()
/** @property */
public void set_StartType (ServiceStartMode value)
public function get StartType () : ServiceStartMode
public function set StartType (value : ServiceStartMode)
ServiceStartMode,表示服务的启动方式。默认为 Manual,指定在重新启动后服务将不会自动启动。
设置 StartType 来指定该服务是在重新启动后自动启动,还是必须由用户手动启动。服务还可以被禁用,指定在启用以前不能被手动或以编程方式启动。
安装后不能更改 ServiceInstaller 属性值。若要更改 StartType,您必须卸载并重新安装服务,或使用“服务控制管理器”手动更改设置。
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见。
Windows 98、Windows 2000 SP4、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition
.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求。
受以下版本支持:2.0、1.1、1.0
ServiceInstaller 类
ServiceInstaller 成员
System.ServiceProcess 命名空间
ServiceProcessInstaller.Account