Roboid Control for C#
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | Protected Attributes | List of all members
RoboidControl.Participant Class Reference

Detailed Description

A reference to a participant, possibly on a remote location.

Inheritance diagram for RoboidControl.Participant:
RoboidControl.LocalParticipant RoboidControl.SiteServer

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.
 

Public Attributes

string ipAddress = "0.0.0.0"
 The internet address of the participant.
 
int port = 0
 The UDP port on which the participant can be reached.
 
byte networkId
 The network ID of the participant.
 

Protected Attributes

readonly List< Thingthings = new List<Thing>()
 The things reported by this participant.
 

Constructor & Destructor Documentation

◆ Participant()

RoboidControl.Participant.Participant ( string  ipAddress,
int  port 
)

Create a new remote participant.

Parameters
ipAddressThe IP address of the participant
portThe UDP port of the participant

Member Function Documentation

◆ Get()

Thing RoboidControl.Participant.Get ( byte  networkId,
byte  thingId 
)

Get a thing with the given ids.

Parameters
networkIdThe network ID of the thing
thingIdThe ID of the thing
Returns
The thing when it is found, null in other cases.

◆ Add()

void RoboidControl.Participant.Add ( Thing  thing,
bool  invokeEvent = true 
)

Add a new thing for this participant.

Parameters
thingThe thing to add
invokeEventInvoke an notification event when the thing has been added