HidDevice.SendFeatureReportAsync(HidFeatureReport) Method

Definition

Sends an feature report asynchronously from the host to the device.

public:
 virtual IAsyncOperation<unsigned int> ^ SendFeatureReportAsync(HidFeatureReport ^ featureReport) = SendFeatureReportAsync;
IAsyncOperation<uint32_t> SendFeatureReportAsync(HidFeatureReport const& featureReport);
public IAsyncOperation<uint> SendFeatureReportAsync(HidFeatureReport featureReport);
function sendFeatureReportAsync(featureReport)
Public Function SendFeatureReportAsync (featureReport As HidFeatureReport) As IAsyncOperation(Of UInteger)

Parameters

featureReport
HidFeatureReport

The feature report which the host sends to the device.

Returns

IAsyncOperation<UInt32>

Windows.Foundation.IAsyncOperation

IAsyncOperation<uint32_t>

The result of the asynchronous operation.

Remarks

The device must be opened with either FileAccessMode.Read or FileAccessMode.ReadWrite.

Applies to

See also