| File: System\ServiceProcess\ServiceStartMode.cs | Web Access |
| Project: src\runtime\src\libraries\System.ServiceProcess.ServiceController\src\System.ServiceProcess.ServiceController.csproj (System.ServiceProcess.ServiceController) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.ServiceProcess { public enum ServiceStartMode { Manual = Interop.Advapi32.ServiceStartModes.START_TYPE_DEMAND, Automatic = Interop.Advapi32.ServiceStartModes.START_TYPE_AUTO, Disabled = Interop.Advapi32.ServiceStartModes.START_TYPE_DISABLED, Boot = Interop.Advapi32.ServiceStartModes.START_TYPE_BOOT, System = Interop.Advapi32.ServiceStartModes.START_TYPE_SYSTEM } }