Enable or disable monitoring mode, for debugging purposes. If monitoring mode is enabled, libCEC won't respond to any command, but only log incoming data. True to enable, false to disable. True when switched successfully, false otherwise.
| 320 | /// <param name="enable">True to enable, false to disable.</param> |
| 321 | /// <returns>True when switched successfully, false otherwise.</returns> |
| 322 | bool SwitchMonitoring(bool enable) |
| 323 | { |
| 324 | return !!m_libCec && m_libCec->SwitchMonitoring(enable); |
| 325 | } |
| 326 | |
| 327 | /// <summary> |
| 328 | /// Get the CEC version of the device with the given logical address |
nothing calls this directly
no test coverage detected