Report Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| Report(ByteBuffer) |
Constructor for a report that does not use report ID. |
| Report(Int32, ByteBuffer) |
Creates a new |
Report(ByteBuffer)
Constructor for a report that does not use report ID.
[Android.Runtime.Register(".ctor", "(Ljava/nio/ByteBuffer;)V", "", ApiSince=37)]
public Report(Java.Nio.ByteBuffer data);
[<Android.Runtime.Register(".ctor", "(Ljava/nio/ByteBuffer;)V", "", ApiSince=37)>]
new Android.Hardware.Hid.Report : Java.Nio.ByteBuffer -> Android.Hardware.Hid.Report
Parameters
- data
- ByteBuffer
the report data.
- Attributes
Applies to
Report(Int32, ByteBuffer)
Creates a new Report instance with a specified report ID and binary data payload.
[Android.Runtime.Register(".ctor", "(ILjava/nio/ByteBuffer;)V", "", ApiSince=37)]
public Report(int reportId, Java.Nio.ByteBuffer data);
[<Android.Runtime.Register(".ctor", "(ILjava/nio/ByteBuffer;)V", "", ApiSince=37)>]
new Android.Hardware.Hid.Report : int * Java.Nio.ByteBuffer -> Android.Hardware.Hid.Report
Parameters
- reportId
- Int32
the ID for this report format, or zero if report IDs are not used.
- data
- ByteBuffer
the non-null buffer containing the raw binary report payload.
- Attributes