public void Dispose()
        {
            if (_deployManager != null)
            {
                _deployManager.Dispose();
                _deployManager = null;
            }

            if (_deployService != null)
            {
                _deployService.EndServiceRightNow();
                _deployService = null;
            }
        }
Exemple #2
0
 public DeploymentServiceComWrapper()
 {
     this.m_deploymentServiceCom = new DeploymentServiceCom();
 }