RealTimeConnectionManager.ConnectionThrottlingHighMark Property
Gets or sets the high water mark for all connections. When number of outstanding transactions on a 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. 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 below the low 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
'Declaration
Public Property ConnectionThrottlingHighMark As Integer
Get
Set
'Usage
Dim instance As RealTimeConnectionManager
Dim value As Integer
value = instance.ConnectionThrottlingHighMark
instance.ConnectionThrottlingHighMark = value
public int ConnectionThrottlingHighMark { get; set; }
Property Value
Type: System.Int32
Exceptions
Exception | Condition |
---|---|
ArgumentException | Thrown when the set value is below low water mark. |
See Also
Reference
RealTimeConnectionManager Class