/// <summary>Wait for the service to finish.</summary> /// <remarks> /// Wait for the service to finish. /// (Normally, it runs forever.) /// </remarks> private void Join() { try { infoServer.Join(); } catch (Exception ie) { Log.Debug("Exception ", ie); } }
public virtual void Join() { if (proxyServer != null) { try { proxyServer.Join(); } catch (Exception) { } } }