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