GpioController.WaitForEvent Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
WaitForEvent(Int32, PinEventTypes, CancellationToken) |
Bloquea la ejecución hasta que se recibe un evento de tipo eventType o se solicita una cancelación. |
WaitForEvent(Int32, PinEventTypes, TimeSpan) |
Bloquea la ejecución hasta que se recibe un evento de tipo eventType o un período de tiempo ha expirado. |
WaitForEvent(Int32, PinEventTypes, CancellationToken)
Bloquea la ejecución hasta que se recibe un evento de tipo eventType o se solicita una cancelación.
public System.Device.Gpio.WaitForEventResult WaitForEvent (int pinNumber, System.Device.Gpio.PinEventTypes eventTypes, System.Threading.CancellationToken cancellationToken);
public virtual System.Device.Gpio.WaitForEventResult WaitForEvent (int pinNumber, System.Device.Gpio.PinEventTypes eventTypes, System.Threading.CancellationToken cancellationToken);
member this.WaitForEvent : int * System.Device.Gpio.PinEventTypes * System.Threading.CancellationToken -> System.Device.Gpio.WaitForEventResult
abstract member WaitForEvent : int * System.Device.Gpio.PinEventTypes * System.Threading.CancellationToken -> System.Device.Gpio.WaitForEventResult
override this.WaitForEvent : int * System.Device.Gpio.PinEventTypes * System.Threading.CancellationToken -> System.Device.Gpio.WaitForEventResult
Public Function WaitForEvent (pinNumber As Integer, eventTypes As PinEventTypes, cancellationToken As CancellationToken) As WaitForEventResult
Public Overridable Function WaitForEvent (pinNumber As Integer, eventTypes As PinEventTypes, cancellationToken As CancellationToken) As WaitForEventResult
Parámetros
- pinNumber
- Int32
Número de patilla del esquema de numeración del controlador.
- eventTypes
- PinEventTypes
Los tipos de evento que se van a esperar.
- cancellationToken
- CancellationToken
Token de cancelación de cuando la operación debe dejar de esperar un evento.
Devoluciones
Estructura que contiene el resultado de la operación en espera.
Se aplica a
WaitForEvent(Int32, PinEventTypes, TimeSpan)
Bloquea la ejecución hasta que se recibe un evento de tipo eventType o un período de tiempo ha expirado.
public System.Device.Gpio.WaitForEventResult WaitForEvent (int pinNumber, System.Device.Gpio.PinEventTypes eventTypes, TimeSpan timeout);
member this.WaitForEvent : int * System.Device.Gpio.PinEventTypes * TimeSpan -> System.Device.Gpio.WaitForEventResult
Public Function WaitForEvent (pinNumber As Integer, eventTypes As PinEventTypes, timeout As TimeSpan) As WaitForEventResult
Parámetros
- pinNumber
- Int32
Número de patilla del esquema de numeración del controlador.
- eventTypes
- PinEventTypes
Los tipos de evento que se van a esperar.
- timeout
- TimeSpan
Tiempo de espera para el evento.
Devoluciones
Estructura que contiene el resultado de la operación en espera.