Gets or sets the minimum session interval. Any session-expires interval less than this value in messages will not be accepted.

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

Syntax

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

Remarks

The number of seconds that is the minimum allowed value for the session expiration. The allowed values are between 90 and the DesiredSessionTimerInterval. 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