Compartir a través de


HidDevice.GetFeatureReportAsync Método

Definición

Sobrecargas

GetFeatureReportAsync(UInt16)

Recupera de forma asincrónica un informe de características, identificado por el parámetro reportId , para el dispositivo HID especificado.

GetFeatureReportAsync()

Recupera de forma asincrónica el primer informe de características, o predeterminado, del dispositivo HID especificado.

GetFeatureReportAsync(UInt16)

Recupera de forma asincrónica un informe de características, identificado por el parámetro reportId , para el dispositivo HID especificado.

public:
 virtual IAsyncOperation<HidFeatureReport ^> ^ GetFeatureReportAsync(unsigned short reportId) = GetFeatureReportAsync;
/// [Windows.Foundation.Metadata.Overload("GetFeatureReportByIdAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<HidFeatureReport> GetFeatureReportAsync(uint16_t const& reportId);
[Windows.Foundation.Metadata.Overload("GetFeatureReportByIdAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<HidFeatureReport> GetFeatureReportAsync(ushort reportId);
function getFeatureReportAsync(reportId)
Public Function GetFeatureReportAsync (reportId As UShort) As IAsyncOperation(Of HidFeatureReport)

Parámetros

reportId
UInt16

unsigned short

uint16_t

Identifica el informe de características solicitado.

Devoluciones

Un objeto HidFeatureReport .

Atributos

Comentarios

El dispositivo debe abrirse con FileAccessMode.Read o FileAccessMode.ReadWrite.

Consulte también

Se aplica a

GetFeatureReportAsync()

Recupera de forma asincrónica el primer informe de características, o predeterminado, del dispositivo HID especificado.

public:
 virtual IAsyncOperation<HidFeatureReport ^> ^ GetFeatureReportAsync() = GetFeatureReportAsync;
/// [Windows.Foundation.Metadata.Overload("GetFeatureReportAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<HidFeatureReport> GetFeatureReportAsync();
[Windows.Foundation.Metadata.Overload("GetFeatureReportAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<HidFeatureReport> GetFeatureReportAsync();
function getFeatureReportAsync()
Public Function GetFeatureReportAsync () As IAsyncOperation(Of HidFeatureReport)

Devoluciones

Un objeto HidFeatureReport .

Atributos

Comentarios

Esta instancia del método recupera el primer informe de características disponible.

El dispositivo debe abrirse con FileAccessMode.Read o FileAccessMode.ReadWrite.

Se aplica a