BACnet.Core.Datalink.PortManager._removePort C# (CSharp) Метод

_removePort() приватный Метод

Removes a registration from the port manager
private _removePort ( IPort port ) : void
port IPort The port to remove
Результат void
        private void _removePort(IPort port)
        {
            lock(_lock)
            {
                this._ports.Remove(port);
            }
        }