Gets or sets the list of content types that can be supported by the endpoint.

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

Syntax

Visual Basic (Declaration)
Public 
Property 
SupportedMimePartContentTypes 
As 
IEnumerable(
Of 
ContentType)
C#
public 
IEnumerable<
ContentType> 
SupportedMimePartContentTypes { 
get; 
set; }
Visual C++
public:
property 
IEnumerable<
ContentType^>^ 
SupportedMimePartContentTypes {
	
IEnumerable<
ContentType^>^ 
get ();
	
void 
set (
IEnumerable<
ContentType^>^ 
value);
}
JavaScript
function get_
supportedMimePartContentTypes();
function set_
supportedMimePartContentTypes(
value);

Remarks

The content type of any MIME part with handling="required" should be in this list. Otherwise, incoming calls will be rejected automatically.

See Also