/// <summary> /// Volume mute. /// </summary> public void VolumeMute() { if (deviceCommunication == null || volumeSetting == null) { return; } deviceCommunication.VolumeMute(!volumeSetting.muted); }
public void VolumeMute() { if (!IsConnected()) { return; } deviceCommunication.VolumeMute(!volumeSetting.muted); }