SdpOffer Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SdpOffer(SdpContentDescription) |
Create the instance of SdpOffer. |
SdpOffer(SdpContentDescription, IEnumerable<SignalingHeader>) |
Create the instance of SdpOffer. |
SdpOffer(IEnumerable<SdpContentDescription>, IEnumerable<SignalingHeader>) |
Create the instance of SdpOffer. |
SdpOffer(SdpContentDescription)
Create the instance of SdpOffer.
public:
SdpOffer(Microsoft::Rtc::Collaboration::SdpContentDescription ^ description);
public SdpOffer (Microsoft.Rtc.Collaboration.SdpContentDescription description);
new Microsoft.Rtc.Collaboration.SdpOffer : Microsoft.Rtc.Collaboration.SdpContentDescription -> Microsoft.Rtc.Collaboration.SdpOffer
Public Sub New (description As SdpContentDescription)
Parameters
- description
- SdpContentDescription
Sdp containing the offer sdp.
Applies to
SdpOffer(SdpContentDescription, IEnumerable<SignalingHeader>)
Create the instance of SdpOffer.
public:
SdpOffer(Microsoft::Rtc::Collaboration::SdpContentDescription ^ description, System::Collections::Generic::IEnumerable<Microsoft::Rtc::Signaling::SignalingHeader ^> ^ headers);
public SdpOffer (Microsoft.Rtc.Collaboration.SdpContentDescription description, System.Collections.Generic.IEnumerable<Microsoft.Rtc.Signaling.SignalingHeader> headers);
new Microsoft.Rtc.Collaboration.SdpOffer : Microsoft.Rtc.Collaboration.SdpContentDescription * seq<Microsoft.Rtc.Signaling.SignalingHeader> -> Microsoft.Rtc.Collaboration.SdpOffer
Public Sub New (description As SdpContentDescription, headers As IEnumerable(Of SignalingHeader))
Parameters
- description
- SdpContentDescription
Sdp containing the offer sdp.
- headers
- IEnumerable<SignalingHeader>
Additional headers to be sent with the Offer.
Applies to
SdpOffer(IEnumerable<SdpContentDescription>, IEnumerable<SignalingHeader>)
Create the instance of SdpOffer.
public:
SdpOffer(System::Collections::Generic::IEnumerable<Microsoft::Rtc::Collaboration::SdpContentDescription ^> ^ descriptions, System::Collections::Generic::IEnumerable<Microsoft::Rtc::Signaling::SignalingHeader ^> ^ headers);
public SdpOffer (System.Collections.Generic.IEnumerable<Microsoft.Rtc.Collaboration.SdpContentDescription> descriptions, System.Collections.Generic.IEnumerable<Microsoft.Rtc.Signaling.SignalingHeader> headers);
new Microsoft.Rtc.Collaboration.SdpOffer : seq<Microsoft.Rtc.Collaboration.SdpContentDescription> * seq<Microsoft.Rtc.Signaling.SignalingHeader> -> Microsoft.Rtc.Collaboration.SdpOffer
Public Sub New (descriptions As IEnumerable(Of SdpContentDescription), headers As IEnumerable(Of SignalingHeader))
Parameters
- descriptions
- IEnumerable<SdpContentDescription>
List of Sdp bodies to be sent in multipart mime offer.
- headers
- IEnumerable<SignalingHeader>
Additional headers to be sent with the Offer.