Enum IceConnectionState
State of an ICE connection.
Namespace: Microsoft.MixedReality.WebRTC
Assembly: Microsoft.MixedReality.WebRTC.dll
Syntax
public enum IceConnectionState : int
Remarks
Due to the underlying implementation, this is currently a mix of the RTPIceGatheringState and the RTPPeerConnectionState from the WebRTC 1.0 standard.
Fields
| Name | Description |
|---|---|
| Checking | ICE connection received an offer, but transports are not writable yet. |
| Closed | The peer connection was closed entirely. |
| Completed | ICE connection finished establishing. |
| Connected | Transports are writable. |
| Disconnected | ICE connection is disconnected, there is no more writable transport. |
| Failed | Failed establishing an ICE connection. |
| New | Newly created ICE connection. This is the starting state. |