Raised when there is a change in connection throttling state. When this event is raised, the application can check the property IsConnectionThrottled to determine if the connection is throttled or not.

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

Syntax

Visual Basic (Declaration)
Public Event 
ThrottlingStateChanged 
As 
EventHandler(
Of 
EventArgs)
C#
public event 
EventHandler<
EventArgs> 
ThrottlingStateChanged
Visual C++
public:
 
event 
EventHandler<
EventArgs^>^ 
ThrottlingStateChanged {
	
void 
add (
EventHandler<
EventArgs^>^ 
value);
	
void 
remove (
EventHandler<
EventArgs^>^ 
value);
}
JavaScript
function add_
throttlingStateChanged(
value);
function remove_
throttlingStateChanged(
value);

See Also