public void StopService() { if (null != this._host) { this._host.StopService(); this._host = null; } Unsubscribe(); }
public void StartService() { if (null == this._host) { this._host = new ExceptionSubscriberHost(); } if (false == this._host.IsRunning) { this._host.StartService(); } _systemName = "CEWEBSERVICECLIENT_" + ServiceListener.HostName; _systemUri = this._host.HttpUri; Subscribe(); }