ArtemisComm.Proxy.Logger.ProxyLogger.UnsubscribeProxy C# (CSharp) 메소드

UnsubscribeProxy() 공개 메소드

public UnsubscribeProxy ( ) : void
리턴 void
        void UnsubscribeProxy()
        {
            if (Proxy != null)
            {
                Proxy.Connected -= proxy_Connected;
                Proxy.ConnectionLost -= proxy_ConnectionLost;
                Proxy.ExceptionEncountered -= proxy_ExceptionEncountered;
                if (EnableLogging)
                {
                    Proxy.PackageReceived -= proxy_PackageReceived;
                }
            }
        }
        bool isDisposed = false;