SOSync.CRMConnection.Logout C# (CSharp) Method

Logout() public method

public Logout ( ) : void
return void
        public void Logout()
        {
            if (!opened) return;
            opened = false;
            service = null;
            service_proxy.Dispose();
            service_proxy = null;
        }