Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
DeviceLocationEventArgs.cs
1using System.Net;
2
4{
9 {
10 private readonly DeviceLocation location;
11 private readonly IPEndPoint localEndPoint;
12 private readonly IPEndPoint remoteEndPoint;
13
15 {
16 this.location = Location;
17 this.localEndPoint = LocalEndPoint;
18 this.remoteEndPoint = RemoteEndPoint;
19 }
20
24 public DeviceLocation Location => this.location;
25
29 public IPEndPoint LocalEndPoint => this.localEndPoint;
30
34 public IPEndPoint RemoteEndPoint => this.remoteEndPoint;
35
36 }
37}
Event arguments for completion events when downloading device description documents.
DeviceLocation Location
Device Location information.
Contains information about the location of a device on the network.