Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
RootsCapabilities.cs
2
4{
8 public class RootsCapabilities
9 {
13 public bool? ListChanged { get; internal set; }
14
21 public static bool TryParse(Dictionary<string, object> Generic,
22 out RootsCapabilities Typed)
23 {
25
26 if (Generic.TryGetValue("listChanged", out object? Obj) &&
27 Obj is bool ListChanged)
28 {
29 Result.ListChanged = ListChanged;
30 }
31
32 Typed = Result;
33 return true;
34 }
35 }
36}
static bool TryParse(Dictionary< string, object > Generic, out RootsCapabilities Typed)
Tries to parse a generic structure into a typed structure.
bool? ListChanged
Whether the client supports notifications for changes to the roots list.