Exemplo n.º 1
0
 public void StopService()
 {
     if (null != this._host)
     {
         this._host.StopService();
         this._host = null;
     }
 }
Exemplo n.º 2
0
        public void StartService()
        {
            if (null == this._host)
            {
                this._host = new InternalAPICallbackHost();
            }

            if (false == this._host.IsRunning)
            {
                this._host.StartService();
            }
        }