Gets a list of the call's default media types.

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

Syntax

Visual Basic (Declaration)
Public 
Property 
InitialOfferMediaTypes 
As 
IEnumerable(
Of 
String)
C#
public 
IEnumerable<
string> 
InitialOfferMediaTypes { 
get; 
internal 
set; }
Visual C++
public:
property 
IEnumerable<
String^>^ 
InitialOfferMediaTypes {
	
IEnumerable<
String^>^ 
get ();
	
void 
set (
IEnumerable<
String^>^ 
value);
}
JavaScript
function get_
initialOfferMediaTypes();
function set_
initialOfferMediaTypes(
value);

Remarks

MediaProvider can use the media types returned by this property to initialize the flow. This property will be set only for the initial outgoing offer and will be null for all other cases.

See Also