Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
S2sEndpointStatistics.cs
1using System;
2
4{
9 {
15 public S2sEndpointStatistics(string Name, string Type)
16 : base(Name, Type)
17 {
18 }
19
23 public string LocalDomain => (this.Endpoint as XmppS2SEndpoint)?.LocalDomain ?? string.Empty;
24
28 public string RemoteDomain => (this.Endpoint as XmppS2SEndpoint)?.RemoteDomain ?? string.Empty;
29
33 public bool? TrustServer => (this.Endpoint as XmppS2SEndpoint)?.TrustServer;
34
39
43 public XmppS2sState? State => (this.Endpoint as XmppS2SEndpoint)?.State;
44
45 }
46}
Mainstains information about connectivity from a specific endpoint.
Mainstains information about connectivity from a specific s2s endpoint.
bool? ServerCertificateValid
If remote server certificate is valid.
bool? TrustServer
If remote domain should be trusted (even if certificate is not valid).
S2sEndpointStatistics(string Name, string Type)
Mainstains information about connectivity from a specific endpoint.
Manages an XMPP server-to-server connection.
XmppS2sState
State of XMPP connection.
Definition: XmppS2sState.cs:7