Enum WebRTCIceConnectionState

Definition

Namespace:
Tizen.Multimedia.Remoting
Assembly:
Tizen.Multimedia.Remoting.dll
API Level:
9

Specifies ICE connection states that a WebRTC can have.

C#
Copy
public enum WebRTCIceConnectionState
Remarks

This state describe the current state of local and its connection to the ICE server(STUN or TURN).

Name Description
Checking

Checking pairs of local and remote candidates against one another to try to find a compatible match.

Closed

Closed.

Completed

Gathering candidates has been finished and hecked all pairs against one another,
and has found a connection for all components.

Connected

A usable pairing of local and remote candidates has been found for all components of the connection,
and the connection has been established.

Disconnected

This is a less stringent test than "Failed" and may trigger intermittently and resolve just as spontaneously on less reliable networks,
or during temporary disconnections. When the problem resolves, the connection may return to the "connected" state.

Failed

There's no compatible matches.

New

The Initial state.