Click or drag to resize
IConnectorIsPassive Property
Gets or sets a value indicating whether the connector waits for other things to connect to it or it actively connects to other things.

Namespace: VirtualRadar.Interface.Network
Assembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
bool IsPassive { get; set; }

Property Value

Type: Boolean
Remarks

Attempting to change this after EstablishConnection has been called will throw an exception.

Passive connectors wait for incoming connections from another machine. They can accept one or many simultaneous connections.

By contrast active connectors attempt to create a connection with a remote machine or hardware and usually keep trying until they manage to establish the connection. They only create one connection.

See Also