Gets or sets the default outgoing connection timeout value. If the connection is idle for the duration specified by this value, the connection will be disconnected. To disable, the value can be set to TimeSpan.Zero

Namespace:  Microsoft.Rtc.Signaling
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Public 
Property 
DefaultOutgoingConnectionTimeout 
As 
TimeSpan
C#
public 
TimeSpan 
DefaultOutgoingConnectionTimeout { 
get; 
set; }
Visual C++
public:
property 
TimeSpan 
DefaultOutgoingConnectionTimeout {
	
TimeSpan 
get ();
	
void 
set (
TimeSpan 
value);
}
JavaScript
function get_
defaultOutgoingConnectionTimeout();
function set_
defaultOutgoingConnectionTimeout(
value);

Exceptions

Exception Condition
ArgumentOutOfRangeException The value given is negative.

See Also