Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ServiceControlAccessRights.cs
1
using
System
;
2
using
System.Collections.Generic
;
3
using
System.Text;
4
5
namespace
Waher.IoTGateway.Svc.ServiceManagement.Enumerations
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
}
System.Collections.Generic
Definition:
ImplTypes.g.cs:4970
System
Definition:
Adapters.g.cs:58
Waher.IoTGateway.Svc.ServiceManagement.Enumerations
Definition:
CtrlTypes.cs:2
IoTGateway
Waher.IoTGateway.Svc
ServiceManagement
Enumerations
ServiceControlAccessRights.cs
Generated by
1.9.5