2using System.Collections.Generic;
14 private string fullJid =
string.Empty;
15 private string bareJid =
string.Empty;
16 private string capabilitiesVersion =
string.Empty;
17 private string capabilitiesNode =
string.Empty;
18 private string capabilitiesFunction =
string.Empty;
19 private string requestingCapabilitiesVersion =
string.Empty;
20 private string requestingCapabilitiesNode =
string.Empty;
21 private string requestingCapabilitiesFunction =
string.Empty;
22 private string[] features =
null;
23 private volatile int synchCounter = 0;
24 private bool isNeuroLedger =
false;
25 private bool isSynchronizing =
false;
40 set => this.fullJid = value;
49 set => this.bareJid = value;
57 get => this.capabilitiesVersion;
58 set => this.capabilitiesVersion = value;
66 get => this.capabilitiesNode;
67 set => this.capabilitiesNode = value;
75 get => this.capabilitiesFunction;
76 set => this.capabilitiesFunction = value;
84 get => this.requestingCapabilitiesVersion;
85 set => this.requestingCapabilitiesVersion = value;
93 get => this.requestingCapabilitiesNode;
94 set => this.requestingCapabilitiesNode = value;
102 get => this.requestingCapabilitiesFunction;
103 set => this.requestingCapabilitiesFunction = value;
111 get => this.features;
112 set => this.features = value;
120 get => this.isNeuroLedger;
121 set => this.isNeuroLedger = value;
129 get => this.isSynchronizing;
130 set => this.isSynchronizing = value;
138 get => this.synchCounter;
139 set => this.synchCounter = value;
Contains information about current synchronization status for a peer in the network.
int SynchCounter
Synchronization Counter
bool IsSynchronizing
If a synchronizating process is underway.
string RequestingCapabilitiesFunction
Entity RequestingCapabilities Function being requested
string[] Features
Features
PeerStatus()
Contains information about current synchronization status for a peer in the network.
string RequestingCapabilitiesNode
Entity RequestingCapabilities Node being requested
string CapabilitiesFunction
Entity Capabilities Function
string RequestingCapabilitiesVersion
Entity Capabilities Version being requested
bool IsNeuroLedger
If the peer is a Neuro-Ledger node.
string CapabilitiesVersion
Entity Capabilities Version
string CapabilitiesNode
Entity Capabilities Node