Język

Report Constructors

Definition

Overloads

Name Description
Report(ByteBuffer)

Constructor for a report that does not use report ID.

Report(Int32, ByteBuffer)

Creates a new Report instance with a specified report ID and binary data payload.

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

Applies to