Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IThingReference.cs
1using System.Threading.Tasks;
2
3namespace Waher.Things
4{
12 public delegate Task<IThingReference> GetThingReferenceMethod(string NodeId, string SourceId, string Partition);
13
17 public interface IThingReference
18 {
22 string NodeId
23 {
24 get;
25 }
26
30 string SourceId
31 {
32 get;
33 }
34
38 string Partition
39 {
40 get;
41 }
42 }
43}
Interface for thing references.
string Partition
Optional partition in which the Node ID is unique.
string SourceId
Optional ID of source containing node.
delegate Task< IThingReference > GetThingReferenceMethod(string NodeId, string SourceId, string Partition)
Delegate for methods returning thing reference nodes.