Table of Contents

Class RTCIceCandidatePair

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The RTCIceCandidatePair dictionary describes a pair of ICE candidates which together comprise a description of a viable connection between two WebRTC endpoints. It is used as the return value from GetSelectedCandidatePair() to identify the currently-selected candidate pair identified by the ICE agent.

[Value("RTCIceCandidatePair")]
public class RTCIceCandidatePair
Inheritance
RTCIceCandidatePair
Inherited Members

Remarks

Constructors

RTCIceCandidatePair()

public RTCIceCandidatePair()

Properties

Local

The local property of the RTCIceCandidatePair dictionary specifies the RTCIceCandidate which describes the configuration of the local end of a viable WebRTC connection.

[Value("local")]
public RTCIceCandidate Local { get; }

Property Value

RTCIceCandidate

An RTCIceCandidate which describes the configuration of the local end of a viable pair of ICE candidates.
The RTCIceCandidatePair is returned by the RTCIceTransport method GetSelectedCandidatePair().

Remarks

Remote

The remote property of the
RTCIceCandidatePair dictionary specifies the
RTCIceCandidate describing the configuration of the remote end of a
viable WebRTC connection.

[Value("remote")]
public RTCIceCandidate Remote { get; }

Property Value

RTCIceCandidate

An RTCIceCandidate which describes the configuration of the remote end
of a viable pair of ICE candidates. The RTCIceCandidatePair is returned by
the RTCIceTransport method
GetSelectedCandidatePair().

Remarks