Send a key release to a device on the CEC bus. The logical address of the device to send the message to. True to wait for a response, false otherwise. True when the key release was acked, false otherwise.
| 496 | /// <param name="wait">True to wait for a response, false otherwise.</param> |
| 497 | /// <returns>True when the key release was acked, false otherwise.</returns> |
| 498 | bool SendKeyRelease(CecLogicalAddress destination, bool wait) |
| 499 | { |
| 500 | return !!m_libCec && m_libCec->SendKeyRelease((cec_logical_address)destination, wait); |
| 501 | } |
| 502 | |
| 503 | /// <summary> |
| 504 | /// Get the OSD name of a device on the CEC bus. |
nothing calls this directly
no test coverage detected