Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
EndpointStatus.cs
1using System;
2using System.Collections.Generic;
3using System.Net;
4
6{
10 public class EndpointStatus
11 {
12 private readonly IPEndPoint endpoint;
13 private readonly object status;
14
15 internal EndpointStatus(IPEndPoint Endpoint, object Status)
16 {
17 this.endpoint = Endpoint;
18 this.status = Status;
19 }
20
24 public IPEndPoint Endpoint => this.endpoint;
25
29 public object Status => this.status;
30 }
31}
Contains information about one of the endpoints in the cluster.
IPEndPoint Endpoint
Remote endpoint