AudioVideoCall class is the class which supports the audio-based and video-based communication.

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

Syntax

Visual Basic (Declaration)
Public 
Class 
AudioVideoCall _
	
Inherits 
Call
C#
public 
class 
AudioVideoCall : 
Call
Visual C++
public 
ref class 
AudioVideoCall : 
public 
Call
JavaScript

Microsoft.Rtc.Collaboration.AudioVideo.AudioVideoCall = 
function();

Type.createClass(
		'Microsoft.Rtc.Collaboration.AudioVideo.AudioVideoCall',
	

Microsoft.Rtc.Collaboration.Call);

Remarks

AudioVideoCall is an implementation of the abstract Callclass. It implements signaling for audio and video calls. Actual audio and video is exchanged on an instance of AudioVideoFlow, which is created at the time when the call is established.

Inheritance Hierarchy

Object
   Microsoft.Rtc.Collaboration . . :: . Call
     Microsoft.Rtc.Collaboration.AudioVideo . . :: . AudioVideoCall

See Also