Create an instance for SdpDescriptionAnswer class.

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

Syntax

Visual Basic (Declaration)
Public 
Sub 
New ( _
	
answerSdp 
As 

SdpContentDescription, _
	
status 
As 

SdpAnswerStatus, _
	
messageHeaders 
As 
IEnumerable(
Of 

SignalingHeader) _
)
C#
public 
SdpAnswer(
	

SdpContentDescription 
answerSdp,
	

SdpAnswerStatus 
status,
	
IEnumerable<

SignalingHeader> 
messageHeaders
)
Visual C++
public:
SdpAnswer(
	

SdpContentDescription^ 
answerSdp, 
	

SdpAnswerStatus 
status, 
	
IEnumerable<

SignalingHeader^>^ 
messageHeaders
)
JavaScript

Microsoft.Rtc.Collaboration.SdpAnswer = 
function(
answerSdp, 
status, 
messageHeaders);

Parameters

answerSdp
Type: Microsoft.Rtc.Collaboration . . :: . SdpContentDescription
answerSdp
status
Type: Microsoft.Rtc.Collaboration . . :: . SdpAnswerStatus
Status for the answer.
messageHeaders
Type: IEnumerable < (Of < ( SignalingHeader > ) > )
List of the headers on the Answer.

See Also