Gets or sets the low water mark for this connection. When number of outstanding transactions on this connection exceeeds the high water mark, the connection is throttled until it goes below the low water mark. When the connection is throttled, send/receive will fail. Responses, however, can be sent to bring the level down. Outstanding outgoing transactions that are pending will timeout. The connection buffer is not processed until the outstanding transactions count falls below the low water mark. This value cannot be set above the high water mark. By default, this value is int.MaxValue. If both water mark levels are set to int.MaxValue, the connection throttling is disabled.

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

Syntax

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

Exceptions

Exception Condition
ArgumentException Thrown when the set value is above high water mark or negative.

See Also