Create the instance of SdpOffer.

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

Syntax

Visual Basic (Declaration)
Public 
Sub 
New ( _
	
descriptions 
As 
IEnumerable(
Of 

SdpContentDescription), _
	
headers 
As 
IEnumerable(
Of 

SignalingHeader) _
)
C#
public 
SdpOffer(
	
IEnumerable<

SdpContentDescription> 
descriptions,
	
IEnumerable<

SignalingHeader> 
headers
)
Visual C++
public:
SdpOffer(
	
IEnumerable<

SdpContentDescription^>^ 
descriptions, 
	
IEnumerable<

SignalingHeader^>^ 
headers
)
JavaScript

Microsoft.Rtc.Collaboration.SdpOffer = 
function(
descriptions, 
headers);

Parameters

descriptions
Type: IEnumerable < (Of < ( SdpContentDescription > ) > )
List of Sdp bodies to be sent in multipart mime offer.
headers
Type: IEnumerable < (Of < ( SignalingHeader > ) > )
Additional headers to be sent with the Offer.

See Also