Exemple #1
0
        private void InitStartWebRtcCommandExecute(object obj)
        {
            new Task(() =>
            {
                IsConnecting = true;

                starWebrtcContext.initAndStartWebRTC();
            }).Start();
        }
Exemple #2
0
 public void OnTestWebRTCInitButtonPressed()
 {
     OnLog("starting test init of WebRTC...");
     starWebrtcContext.initAndStartWebRTC();
     OnLog("done with test init of WebRTC");
 }
Exemple #3
0
        private async void button_Click(object sender, RoutedEventArgs e)
        {
            button.IsEnabled = false;

            starWebrtcContext.initAndStartWebRTC();
        }