Property IceConnectionState
IceConnectionState
The readonly property of the RTCPeerConnection indicates the current state of the peer connection by returning one of the RTCIceConnectionState enum.
Declaration
public RTCIceConnectionState IceConnectionState { get; }
Property Value
| Type | Description |
|---|---|
| RTCIceConnectionState |
Examples
var peerConnection = new RTCPeerConnection(configuration);
var iceConnectionState = peerConnection.IceConnectionState;