Liking cljdoc? Tell your friends :D

web.video.RTCSessionDescription

The RTCSessionDescription interface describes one end of a connection—or connection—and how it's configured. Each RTCSessionDescription of a description type indicating which part of the offer/answer process it describes and of the SDP descriptor of the session.

The RTCSessionDescription interface describes one end of a connection—or
connection—and how it's configured. Each RTCSessionDescription
of a description `type` indicating which part of the offer/answer
process it describes and of the SDP descriptor of the session.
raw docstring

constructorcljs

(constructor & args)

Constructor.

The RTCSessionDescription() constructor creates a new web.video.RTCSessionDescription with its properties initialized as described in the specified object.

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCSessionDescription/RTCSessionDescription

Constructor.

The RTCSessionDescription() constructor creates a new `web.video.RTCSessionDescription` with its properties initialized as described in the specified object.

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCSessionDescription/RTCSessionDescription`
sourceraw docstring

rtc-session-descriptioncljs

(rtc-session-description this rtc-session-description-init)

Method.

[Deprecated] [Experimental]

The RTCSessionDescription() constructor creates a new web.video.RTCSessionDescription its properties initialized as described in the specified object.

sessionDescription = new RTCSessionDescription(rtcSessionDescriptionInit);

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCSessionDescription/RTCSessionDescription

Method.

[Deprecated]
[Experimental]

The RTCSessionDescription() constructor creates a new `web.video.RTCSessionDescription`
its properties initialized as described in the specified object.

`sessionDescription = new RTCSessionDescription(rtcSessionDescriptionInit);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCSessionDescription/RTCSessionDescription`
sourceraw docstring

sdpcljs

(sdp this)

Property.

[Read Only] [Experimental]

The property RTCSessionDescription.sdp is a read-only web.DOMString the SDP which describes the session.

var value = sessionDescription.sdp; sessionDescription.sdp = value;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCSessionDescription/sdp

Property.

[Read Only]
[Experimental]

The property RTCSessionDescription.sdp is a read-only `web.DOMString`
the SDP which describes the session.

`var value = sessionDescription.sdp;
sessionDescription.sdp = value;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCSessionDescription/sdp`
sourceraw docstring

to-jsoncljs

(to-json this & args)

Method.

[Experimental]

The RTCSessionDescription.toJSON() method generates a JSON description the object. Both properties, type and sdp, are contained the generated JSON.

`var jsonValue = sd.toJSON();

The result value is a js.JSON object containing the following values:

"type", containing the value of the RTCSessionDescription.type property and can be one of the following values: "offer", "answer", "pranswer" or null. "sdp", containing a web.DOMString, or null, with the SDP message corresponding to RTCSessionDescription.sdp property.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCSessionDescription/toJSON

Method.

[Experimental]

The RTCSessionDescription.toJSON() method generates a JSON description
the object. Both properties, `type` and `sdp`, are contained
the generated JSON.

`var jsonValue = sd.toJSON();

The result value is a `js.JSON` object containing the following values:


\"type\", containing the value of the `RTCSessionDescription.type` property and can be one of the following values: \"offer\", \"answer\", \"pranswer\" or null.
\"sdp\", containing a `web.DOMString`, or null, with the SDP message corresponding to `RTCSessionDescription.sdp` property.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCSessionDescription/toJSON`
sourceraw docstring

typecljs

(type this)

Property.

[Read Only] [Experimental]

The property RTCSessionDescription.type is a read-only value type RTCSdpType which describes the description's type.

var value = sessionDescription.type; sessionDescription.type = value;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCSessionDescription/type

Property.

[Read Only]
[Experimental]

The property RTCSessionDescription.type is a read-only value
type RTCSdpType which describes the description's type.

`var value = sessionDescription.type;
sessionDescription.type = value;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCSessionDescription/type`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close