| ReceiverIsPassive Property  | 
            Gets or sets a value indicating that the receiver will not connect to the source but will instead
            wait for the source to connect to it.
            
 
Namespace: VirtualRadar.Interface.SettingsAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic bool IsPassive { get; set; }Public Property IsPassive As Boolean
	Get
	Set
public:
property bool IsPassive {
	bool get ();
	void set (bool value);
}member IsPassive : bool with get, set
Property Value
Type: 
Boolean
Remarks
            Only used when the 
ConnectionType is TCP. When a receiver is in passive mode the 
            
Address is ignored. Only one source can connect to a passive receiver at a time,
            once a connection is established the receiver stops listening.
            
See Also