Squishy.Network.Throttle.Remove C# (CSharp) Метод

Remove() публичный Метод

Removes an existent Connection from this throttle or does nothing if the connection does not belong to this throttle.
public Remove ( Connection con ) : void
con Connection
Результат void
        public void Remove(Connection con)
        {
            lock (conLock)
            {
                Remove(cons.IndexOf(con));
            }
        }

Same methods

Throttle::Remove ( int index ) : void