Tell me why I have all the time call status = clsCancelled ?? I try to just make a call from Skype with C # code. Text messages work OK, but do not want to call. Yesterday, when the ideas were already over, I checked it under another login, sent another Skype user, so the clsRefused events immediately followed, and then clsRunning seemed to dial. After that, he was delighted with the success, but repeated all the options were repeated clsCancelled again always and constantly .... ((
Skype skype; try { skype = new SKYPE4COMLib.Skype(); if (!skype.Client.IsRunning) { skype.Client.Start(true, true); } //skype.Attach(8, true); Call call = skype.PlaceCall("test-user-nickname"); do { System.Threading.Thread.Sleep(100); Console.WriteLine(call.Status + " " + call.TransferStatus); } while (call.Status != TCallStatus.clsInProgress); } catch (Exception ex) { Console.WriteLine(ex.Message); }