SdpWriter.AddFormat Method

Definition

Overloads

AddFormat(Int32)

Appends a format value to the end of an "m" line when building an SDP.

AddFormat(String)

Appends a format value to the end of an "m" line when building an SDP.

AddFormat(Int32)

Appends a format value to the end of an "m" line when building an SDP.

public:
 void AddFormat(int format);
public void AddFormat (int format);
member this.AddFormat : int -> unit
Public Sub AddFormat (format As Integer)

Parameters

format
Int32

The value to append.

Exceptions

Thrown when the format attribute does not have a value from 0 to 127.

Applies to

AddFormat(String)

Appends a format value to the end of an "m" line when building an SDP.

public:
 void AddFormat(System::String ^ format);
public void AddFormat (string format);
member this.AddFormat : string -> unit
Public Sub AddFormat (format As String)

Parameters

format
String

Value to append. Multiple values may be specified at once by separating them with a space.

Exceptions

Thrown when the format attribute is null.

Thrown when the format attribute is an empty string.

Applies to