Raised when the existing remote participant requests to escalate the conversation into conference.

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

Syntax

Visual Basic (Declaration)
Public Event 
EscalateToConferenceRequested 
As 
EventHandler(
Of 

EscalateToConferenceRequestedEventArgs)
C#
public event 
EventHandler<

EscalateToConferenceRequestedEventArgs> 
EscalateToConferenceRequested
Visual C++
public:
 
event 
EventHandler<

EscalateToConferenceRequestedEventArgs^>^ 
EscalateToConferenceRequested {
	
void 
add (
EventHandler<

EscalateToConferenceRequestedEventArgs^>^ 
value);
	
void 
remove (
EventHandler<

EscalateToConferenceRequestedEventArgs^>^ 
value);
}
JavaScript
function add_
escalateToConferenceRequested(
value);
function remove_
escalateToConferenceRequested(
value);

Remarks

The platform will automatically accept the escalation request. The application is responsible for joining the conference in the conversation using the ConferenceSessionproperty. The application cannot create a new conference of its own once this event has been raised.

See Also