-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathServiceStartMode.cs
49 lines (42 loc) · 1.87 KB
/
ServiceStartMode.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//------------------------------------------------------------------------------
// <copyright file="ServiceStartMode.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
/*
*/
namespace System.ServiceProcess {
using System.Diagnostics;
using System;
/// <include file='doc\ServiceStartMode.uex' path='docs/doc[@for="ServiceStartMode"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public enum ServiceStartMode {
/// <include file='doc\ServiceStartMode.uex' path='docs/doc[@for="ServiceStartMode.Manual"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
Manual = NativeMethods.START_TYPE_DEMAND,
/// <include file='doc\ServiceStartMode.uex' path='docs/doc[@for="ServiceStartMode.Automatic"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
Automatic = NativeMethods.START_TYPE_AUTO,
/// <include file='doc\ServiceStartMode.uex' path='docs/doc[@for="ServiceStartMode.Disabled"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
Disabled = NativeMethods.START_TYPE_DISABLED,
/// <include file='doc\ServiceStartMode.uex' path='docs/doc[@for="ServiceStartMode.Boot"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
Boot = NativeMethods.START_TYPE_BOOT,
/// <include file='doc\ServiceStartMode.uex' path='docs/doc[@for="ServiceStartMode.System"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
System = NativeMethods.START_TYPE_SYSTEM,
}
}