BACnet.Core.Datalink.PortManager._removePort C# (CSharp) Method

_removePort() private method

Removes a registration from the port manager
private _removePort ( IPort port ) : void
port IPort The port to remove
return void
        private void _removePort(IPort port)
        {
            lock(_lock)
            {
                this._ports.Remove(port);
            }
        }