Esempio n. 1
0
        /// <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);
        }