HidDevice.CreateFeatureReport Method

Definition

Overloads

CreateFeatureReport()

Creates the only, or default, feature report that the host will send to the device.

CreateFeatureReport(UInt16)

Creates a feature report, identified by the reportId parameter, that the host will send to the device.

CreateFeatureReport()

Creates the only, or default, feature report that the host will send to the device.

public:
 virtual HidFeatureReport ^ CreateFeatureReport() = CreateFeatureReport;
/// [Windows.Foundation.Metadata.Overload("CreateFeatureReport")]
HidFeatureReport CreateFeatureReport();
[Windows.Foundation.Metadata.Overload("CreateFeatureReport")]
public HidFeatureReport CreateFeatureReport();
function createFeatureReport()
Public Function CreateFeatureReport () As HidFeatureReport

Returns

A HidFeatureReport object.

Attributes

See also

Applies to

CreateFeatureReport(UInt16)

Creates a feature report, identified by the reportId parameter, that the host will send to the device.

public:
 virtual HidFeatureReport ^ CreateFeatureReport(unsigned short reportId) = CreateFeatureReport;
/// [Windows.Foundation.Metadata.Overload("CreateFeatureReportById")]
HidFeatureReport CreateFeatureReport(uint16_t const& reportId);
[Windows.Foundation.Metadata.Overload("CreateFeatureReportById")]
public HidFeatureReport CreateFeatureReport(ushort reportId);
function createFeatureReport(reportId)
Public Function CreateFeatureReport (reportId As UShort) As HidFeatureReport

Parameters

reportId
UInt16

unsigned short

uint16_t

Identifies the report being created.

Returns

A HidFeatureReport object.

Attributes

See also

Applies to