Esempio n. 1
0
        public bool RejectConnection(PeerConnection Connection)
        {
            bool r = _PendingConnections.Remove(Connection);

            if (r)
            {
                Connection.BeginDisconnect(true);
            }
            return(r);
        }