FlightStick.HeadsetDisconnected Event

Definition

Signals when a headset is disconnected from the flight stick.

// Register
event_token HeadsetDisconnected(TypedEventHandler<IGameController, Headset const&> const& handler) const;

// Revoke with event_token
void HeadsetDisconnected(event_token const* cookie) const;

// Revoke with event_revoker
FlightStick::HeadsetDisconnected_revoker HeadsetDisconnected(auto_revoke_t, TypedEventHandler<IGameController, Headset const&> const& handler) const;
public event TypedEventHandler<IGameController,Headset> HeadsetDisconnected;
function onHeadsetDisconnected(eventArgs) { /* Your code */ }
flightStick.addEventListener("headsetdisconnected", onHeadsetDisconnected);
flightStick.removeEventListener("headsetdisconnected", onHeadsetDisconnected);
- or -
flightStick.onheadsetdisconnected = onHeadsetDisconnected;
Public Custom Event HeadsetDisconnected As TypedEventHandler(Of IGameController, Headset) Implements HeadsetDisconnected

Event Type

Implements

Examples

The following example shows how to register a handler for this event.

#include <winrt/Windows.Gaming.Input.h>
using namespace winrt;
using namespace Windows::Gaming::Input;
...
FlightStick m_flightStick{ nullptr }; // Need to initialize this to a **FlightStick** that's connected to the device.
...
m_flightStick.HeadsetDisconnected([this](IGameController const& /* sender */, Headset const& /* args */)
    {
        // Disable headset capture and playback on this device.
    });
// `flightStick` is a **FlightStick** that's connected to the device.
flightStick.HeadsetDisconnected += ref new TypedEventHandler<IGameController^, Headset^>(
    [] (IGameController^ device, Headset^ headset)
{
    // Disable headset capture and playback on this device.
});

Remarks

For more information on detecting, tracking, and using headsets, see Headset.

Applies to

See also