SdpMediaDescription Constructors

Definition

Overloads

SdpMediaDescription()

Initializes a new instance of the class.

SdpMediaDescription(SdpMediaDescription)

Constructs an copy of the supplied media section. This constructor is private, but the Copy() function may be used to create a copy.

SdpMediaDescription(String)

Initializes a new instance of the class.

SdpMediaDescription()

Initializes a new instance of the class.

public:
 SdpMediaDescription();
public SdpMediaDescription ();
Public Sub New ()

Applies to

SdpMediaDescription(SdpMediaDescription)

Constructs an copy of the supplied media section. This constructor is private, but the Copy() function may be used to create a copy.

protected:
 SdpMediaDescription(Microsoft::Rtc::Signaling::SdpMediaDescription ^ source);
protected SdpMediaDescription (Microsoft.Rtc.Signaling.SdpMediaDescription source);
new Microsoft.Rtc.Signaling.SdpMediaDescription : Microsoft.Rtc.Signaling.SdpMediaDescription -> Microsoft.Rtc.Signaling.SdpMediaDescription
Protected Sub New (source As SdpMediaDescription)

Parameters

source
SdpMediaDescription

The SdpMediaDescription to copy.

Exceptions

Thrown when the argument is null.

Applies to

SdpMediaDescription(String)

Initializes a new instance of the class.

public:
 SdpMediaDescription(System::String ^ mediaName);
public SdpMediaDescription (string mediaName);
new Microsoft.Rtc.Signaling.SdpMediaDescription : string -> Microsoft.Rtc.Signaling.SdpMediaDescription
Public Sub New (mediaName As String)

Parameters

mediaName
String

The type of media represented by the "m" line; for example, "audio" or "video".

Applies to