GpioInterruptPin.InterruptRaised | interruptraised event

TBD

Syntax

function onInterruptRaised(eventArgs) { /* Your code */ }
 
// addEventListener syntax
gpioInterruptPin.addEventListener("interruptraised", onInterruptRaised);
gpioInterruptPin.removeEventListener("interruptraised", onInterruptRaised);
 
- or -

gpioInterruptPin.oninterruptraised = onInterruptRaised;
public event TypedEventHandler<GpioInterruptPin, GpioInterruptEventArgs> InterruptRaised
Public Event InterruptRaised As TypedEventHandler(Of GpioInterruptPin, GpioInterruptEventArgs)
public:
event TypedEventHandler<GpioInterruptPin, GpioInterruptEventArgs>^ InterruptRaised {
   Windows::Foundation::EventRegistrationToken add(TypedEventHandler<GpioInterruptPin, GpioInterruptEventArgs>^ value);
   void remove(Windows::Foundation::EventRegistrationToken token);
}

Event information

Delegate TypedEventHandler<GpioInterruptPin, GpioInterruptEventArgs>

Requirements

Minimum supported client

Windows 10 Technical Preview

Minimum supported server

Windows Server Technical Preview

Minimum supported phone

Windows 10 Technical Preview for phones

Namespace

Windows.Devices.Gpio Windows::Devices::Gpio [C++]

Metadata

Windows.winmd

See also

GpioInterruptPin