Represents a part of a MIME body of a SIP message. A part can represent SDP part or a custom part or a mime/alternative part or a mime/mixed part of a mime body.

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

Syntax

Visual Basic (Declaration)
Public 
Class 
MimePartContentDescription _
	
Inherits 

ContentDescription
C#
public 
class 
MimePartContentDescription : 

ContentDescription
Visual C++
public 
ref class 
MimePartContentDescription : 
public 

ContentDescription
JavaScript

Microsoft.Rtc.Collaboration.MimePartContentDescription = 
function();

Type.createClass(
		'Microsoft.Rtc.Collaboration.MimePartContentDescription',
	

Microsoft.Rtc.Signaling.ContentDescription);

Remarks

A MIME body usually comprises multiple pieces of data, often used to transmit contextual information. For example, notes associated with a call can be transmitted this way.

If a MIME body is represented in the form of a tree with parent and child nodes, this class would represent a node in the tree. For example, the root represents the entire MIME part and the child nodes represent parts contained immediately inside the outer MIME part.

Thus, an intermediate node in the tree will always represent a mime/alternative or a mime/mixed part. The leaves of the tree represent other content types including SDP or a custom part such as text/plain.

Inheritance Hierarchy

Object
   Microsoft.Rtc.Signaling . . :: . ContentDescription
     Microsoft.Rtc.Collaboration . . :: . MimePartContentDescription

See Also