Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ClusterEndpointEventArgs.cs
1using System;
2using System.Net;
3
5{
9 public class ClusterEndpointEventArgs : EventArgs
10 {
11 private readonly IPEndPoint endpoint;
12
18 : base()
19 {
20 this.endpoint = Endpoint;
21 }
22
26 public IPEndPoint Endpoint => this.endpoint;
27 }
28}
Event arguments for cluster endpoint events.
ClusterEndpointEventArgs(IPEndPoint Endpoint)
Event arguments for cluster endpoint events.
IPEndPoint Endpoint
Identity of cluster endpoiunt.