Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
RemoteIdentifier.cs
1namespace Paiwise
2{
7 {
14 public RemoteIdentifier(string AddressType, string Address)
15 {
16 this.AddressType = AddressType;
17 this.Address = Address;
18 }
19
23 public string AddressType { get; }
24
28 public string Address { get; }
29 }
30}
Contains information about a remote identifier.
string AddressType
Remote Address Type, identifying the type of address used in Address.
RemoteIdentifier(string AddressType, string Address)
Contains information about a remote identifier.
string Address
Remote Address, identifying the remote party.
Interface for remote identifiers.