Renci.SshNet.ForwardedPort.RaiseClosing C# (CSharp) Method

RaiseClosing() private method

Raises the IForwardedPort.Closing event.
private RaiseClosing ( ) : void
return void
        private void RaiseClosing()
        {
            var handlers = Closing;
            if (handlers != null)
            {
                handlers(this, EventArgs.Empty);
            }
        }