Gets or sets the default time-out value for any incoming connections. Any incoming connection that is idle for the duration specified by this value will be disconnected. This value does not affect existing connections.

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

Syntax

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

Exceptions

Exception Condition
ArgumentOutOfRangeException Thrown when the value given is negative.

See Also