Renci.SshNet.ForwardedPort.RaiseClosing C# (CSharp) Метод

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

Raises the IForwardedPort.Closing event.
private RaiseClosing ( ) : void
Результат void
        private void RaiseClosing()
        {
            var handlers = Closing;
            if (handlers != null)
            {
                handlers(this, EventArgs.Empty);
            }
        }