![]() |
Roboid Control for C#
|
A reference to a participant, possibly on a remote location.
Public Member Functions | |
Participant () | |
Default constructor. | |
Participant (string ipAddress, int port) | |
Create a new remote participant. | |
Thing | Get (byte networkId, byte thingId) |
Get a thing with the given ids. | |
void | Add (Thing thing, bool invokeEvent=true) |
Add a new thing for this participant. | |
Protected Attributes | |
readonly List< Thing > | things = new List<Thing>() |
The things reported by this participant. | |
RoboidControl.Participant.Participant | ( | string | ipAddress, |
int | port | ||
) |
Create a new remote participant.
ipAddress | The IP address of the participant |
port | The UDP port of the participant |
Thing RoboidControl.Participant.Get | ( | byte | networkId, |
byte | thingId | ||
) |
Get a thing with the given ids.
networkId | The network ID of the thing |
thingId | The ID of the thing |
void RoboidControl.Participant.Add | ( | Thing | thing, |
bool | invokeEvent = true |
||
) |
Add a new thing for this participant.
thing | The thing to add |
invokeEvent | Invoke an notification event when the thing has been added |