Gets or sets the application's desired session timer interval (in seconds). This is used only for the initial invite or response.

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

Syntax

Visual Basic (Declaration)
Public 
Property 
DesiredSessionTimerInterval 
As 
Integer
C#
public 
int 
DesiredSessionTimerInterval { 
get; 
set; }
Visual C++
public:
property 
int 
DesiredSessionTimerInterval {
	
int 
get ();
	
void 
set (
int 
value);
}
JavaScript
function get_
desiredSessionTimerInterval();
function set_
desiredSessionTimerInterval(
value);

Remarks

The value must be greater than or equal to the MinimumSessionExpiresInterval. The session timer needs to be enabled for this setting to take effect.

Exceptions

Exception Condition
ArgumentOutOfRangeException Thrown when setting a value out of the expected range.

See Also