Gets or sets a maximum call establishment time.

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

Syntax

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

Remarks

When a caller tries to establish a call, the remote party can keep sending provisional responses indefinetely. To protect against such rogue clients, the application can define maximum establishment time. If the remote party has not sent a final response before the maximum establishment time then the call will be terminated automatically. By default, the maximum establishment time is 10 minutes.

Exceptions

Exception Condition
ArgumentOutOfRangeException Thrown when a maximum call establishment time set is lesser than 1 minute or greater than 30 minutes.

See Also