private void OnClientActivated() { try { ClientActivated?.Invoke(this, new EventArgs()); } catch (Exception ex) { ex.Log(); } }
public void NotifyClientActivated() { try { ClientActivated?.Invoke(this, EventArgs.Empty); } catch (Exception ex) { ex.Log(); } SendCommand("ACTV", (sender, e) => { // NOP }); }