Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ServiceFailureActionsFlag.cs
1using System;
2using System.Collections.Generic;
3using System.Runtime.InteropServices;
4
6{
7 [StructLayout(LayoutKind.Sequential)]
8 internal struct ServiceFailureActionsFlag
9 {
10 private bool _fFailureActionsOnNonCrashFailures;
11
15 public ServiceFailureActionsFlag(bool enabled)
16 {
17 _fFailureActionsOnNonCrashFailures = enabled;
18 }
19
20 public bool Flag
21 {
22 get => _fFailureActionsOnNonCrashFailures;
23 set => _fFailureActionsOnNonCrashFailures = value;
24 }
25 }
26}