SdpDescription 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
SdpDescription() |
Creates the object. |
SdpDescription(Byte[]) |
Creates the object. Srict parsing is enforced. |
SdpDescription(Byte[], Boolean) |
Creates the object. |
SdpDescription()
Creates the object.
public:
SdpDescription();
public SdpDescription ();
Public Sub New ()
Applies to
SdpDescription(Byte[])
Creates the object. Srict parsing is enforced.
public:
SdpDescription(cli::array <System::Byte> ^ body);
public SdpDescription (byte[] body);
new Microsoft.Rtc.Signaling.SdpDescription : byte[] -> Microsoft.Rtc.Signaling.SdpDescription
Public Sub New (body As Byte())
Parameters
- body
- Byte[]
The bytes containing the SDP to parse.
Applies to
SdpDescription(Byte[], Boolean)
Creates the object.
public:
SdpDescription(cli::array <System::Byte> ^ body, bool strict);
public SdpDescription (byte[] body, bool strict);
new Microsoft.Rtc.Signaling.SdpDescription : byte[] * bool -> Microsoft.Rtc.Signaling.SdpDescription
Public Sub New (body As Byte(), strict As Boolean)
Parameters
- body
- Byte[]
The bytes containing the SDP to parse.
- strict
- Boolean
A value of true indicates the SDP parser should strictly enforce the SDP encoding rules. It is recommended that strict parsing is always used, however being more lenient may be useful there is a need to communicate with a noncompliant device.