Пример #1
0
            public void call_Ended(object sender, CallEndedEventArgs e)
            {
                Call call = (Call)sender;

                // Called to report that call has ended.
                // Add code here to update the UI as appropriate.

                Console.WriteLine("Llamada Terminada");
                mainForm.call_status_lbl.Text = "Llamada Finalizada";
            }
Пример #2
0
 private static void Modem_CallEnded(object sender, CallEndedEventArgs e)
 {
     Console.WriteLine($"Call ended. Duration: {e.Duration}");
 }