Raised when InstantMessagingFlowis created. Applications can use this event handler to register for flow related event handlers and optionally set flow configuration.

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

Syntax

Visual Basic (Declaration)
Public Event 

InstantMessagingFlowConfigurationRequested 
As 
EventHandler(
Of 

InstantMessagingFlowConfigurationRequestedEventArgs)
C#
public event 
EventHandler<

InstantMessagingFlowConfigurationRequestedEventArgs> 

InstantMessagingFlowConfigurationRequested
Visual C++
public:
 
event 
EventHandler<

InstantMessagingFlowConfigurationRequestedEventArgs^>^ 

InstantMessagingFlowConfigurationRequested {
	
void 
add (
EventHandler<

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

InstantMessagingFlowConfigurationRequestedEventArgs^>^ 
value);
}
JavaScript
function add_

instantMessagingFlowConfigurationRequested(
value);
function remove_

instantMessagingFlowConfigurationRequested(
value);

Remarks

It is recommended that the application register an event handler for this event to apply specific configuration settings on the flow object. Applications which wish to configure the flow for the initial SDP negotiation must do so in the eventhandler

See Also