IDeviceSettings ds = m_device.HostCommand as IDeviceSettings;
// disable tones:
ds.MuteToneVolume = VolumeLevel.Off;
// enable tones:
ds.MuteToneVolume = VolumeLevel.Low;
where m_device is an object to IDevice
IDeviceSettings ds = m_device.HostCommand as IDeviceSettings;
// disable tones:
ds.MuteToneVolume = VolumeLevel.Off;
// enable tones:
ds.MuteToneVolume = VolumeLevel.Low;
where m_device is an object to IDevice