private void Plugin_SkypeAttach(object sender, SkypeAttachEventArgs eventargs)
 {
     #if DEBUG
     Debug.WriteLine(eventargs.AttachStatus);
     #endif
 }
 private void HandleSkypeAttach(object theSender, SkypeAttachEventArgs theEventArgs)
 {
     if (SkypeAttach != null)
         SkypeAttach(this, theEventArgs);
 }
 public void OnSkypeAttach(SkypeAttachEventArgs eventargs)
 {
     SkypeAttachHandler handler = SkypeAttach;
     if (handler != null) handler(this, eventargs);
 }