예제 #1
0
        public bool closeSession()
        {
            bool lresult = false;

            do
            {
                if (mSession == null)
                {
                    break;
                }

                try
                {
                    mSession.closeSession();

                    lresult = true;
                }
                catch (Exception exc)
                {
                    LogManager.getInstance().write(exc.Message);
                }

                mSession = null;
            } while (false);

            return(lresult);
        }
예제 #2
0
 public Session(CaptureManagerLibrary.ISession aSession)
 {
     mSession = aSession;
 }