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

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

Syntax

Visual Basic (Declaration)
Public Event 

AudioVideoFlowConfigurationRequested 
As 
EventHandler(
Of 

AudioVideoFlowConfigurationRequestedEventArgs)
C#
public event 
EventHandler<

AudioVideoFlowConfigurationRequestedEventArgs> 

AudioVideoFlowConfigurationRequested
Visual C++
public:
 
event 
EventHandler<

AudioVideoFlowConfigurationRequestedEventArgs^>^ 

AudioVideoFlowConfigurationRequested {
	
void 
add (
EventHandler<

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

AudioVideoFlowConfigurationRequestedEventArgs^>^ 
value);
}
JavaScript
function add_

audioVideoFlowConfigurationRequested(
value);
function remove_

audioVideoFlowConfigurationRequested(
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