ConnectionThrottlingLowMark Property

Gets or sets the low water mark for this connection.

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

Syntax

'Declaration
Public Property ConnectionThrottlingLowMark As Integer
    Get
    Set
'Usage
Dim instance As RealTimeConnection
Dim value As Integer

value = instance.ConnectionThrottlingLowMark

instance.ConnectionThrottlingLowMark = value
public int ConnectionThrottlingLowMark { get; set; }

Property Value

Type: System..::..Int32

Exceptions

Exception Condition
ArgumentException

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

Remarks

When the number of outstanding transactions on this connection exceeds 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, but responses can be sent to bring the level down. Pending outstanding outgoing transactions will timeout. The connection buffer is not processed until the outstanding transaction 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.

See Also

Reference

RealTimeConnection Class

RealTimeConnection Members

Microsoft.Rtc.Signaling Namespace