Example #1
0
        //***********************************************************************************************

        private void RTCIceGatherer_onICEGathererStateChanged2(RTCIceGathererStateChangedEvent evt)
        {
            if (evt.State == RTCIceGathererState.Complete)
            {
                _iceTransport2.Start(_iceGatherer2, _iceGatherer.GetLocalParameters(), RTCIceRole.Controlling);
            }
        }
 private void IceGatherer_OnStateChange(RTCIceGathererStateChangedEvent evt)
 {
     Debug.WriteLine("IceGatherer State Change: " + evt.State);
 }