Click or drag to resize

WebRTCPeerConnectionConnectionState Enumeration

[Missing <summary> documentation for "T:Godot.WebRTCPeerConnection.ConnectionState"]

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public enum ConnectionState
Members
  Member nameValueDescription
New0

The connection is new, data channels and an offer can be created in this state.

Connecting1

The peer is connecting, ICE is in progress, none of the transports has failed.

Connected2

The peer is connected, all ICE transports are connected.

Disconnected3

At least one ICE transport is disconnected.

Failed4

One or more of the ICE transports failed.

Closed5

The peer connection is closed (after calling Close for example).

See Also