Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ServiceControlAccessRights.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6{
7 [Flags]
8 internal enum ServiceControlAccessRights : uint
9 {
10 QueryConfig = 0x00001,
11 ChangeConfig = 0x00002,
12 QueryStatus = 0x00004,
13 EnumerateDependents = 0x00008,
14 Start = 0x00010,
15 Stop = 0x00020,
16 PauseContinue = 0x00040,
17 Interrogate = 0x00080,
18 UserDefinedControl = 0x00100,
19
20 All = Win32AccessMask.StandardRightsRequired
21 | QueryConfig
22 | ChangeConfig
23 | QueryStatus
24 | EnumerateDependents
25 | Start
26 | Stop
27 | PauseContinue
28 | Interrogate
29 | UserDefinedControl
30 }
31}