void connector_OnSessionParticipantRemovedEvent(object sender, ParticipantRemovedEventArgs e)
        {
            VoiceSession s = FindSession(e.SessionHandle, false);

            if (s == null)
            {
                return;
            }
            s.RemoveParticipant(e.URI);
        }