ArtemisComm.Proxy.Logger.ProxyLogger.proxy_ConnectionLost C# (CSharp) Method

proxy_ConnectionLost() public method

public proxy_ConnectionLost ( object sender, ArtemisComm e ) : void
sender object
e ArtemisComm
return void
        void proxy_ConnectionLost(object sender, ArtemisComm.ConnectionEventArgs e)
        {
            ConnectionCount--;
            if (LostConnection != null)
            {
                LostConnection(this, EventArgs.Empty);
            }
        }