Parse Method (Byte[], Int32, Int32)

HidSharp

ReportDescriptorParser Parse Method ( Byte , Int32, Int32) HIDSharp
Parses a raw HID report descriptor.

Namespace: HidSharp.ReportDescriptors.Parser
Assembly: HidSharp (in HidSharp.dll) Version: 1.5.0.0 (1.5.0.0)

Syntax

public void Parse(
	byte[] buffer,
	int offset,
	int count
)
public void Parse(
	byte[] buffer,
	int offset,
	int count
)
Public Sub Parse ( _
	buffer As Byte(), _
	offset As Integer, _
	count As Integer _
)
Public Sub Parse ( _
	buffer As Byte(), _
	offset As Integer, _
	count As Integer _
)
public:
void Parse(
	array<unsigned char>^ buffer, 
	int offset, 
	int count
)
public:
void Parse(
	array<unsigned char>^ buffer, 
	int offset, 
	int count
)
member Parse : 
        buffer : byte[] * 
        offset : int * 
        count : int -> unit
member Parse : 
        buffer : byte[] * 
        offset : int * 
        count : int -> unit

Parameters

buffer
Type:  OnlineSystem Byte 
The buffer containing the report descriptor.
offset
Type: OnlineSystem Int32
The offset into the buffer to begin parsing from.
count
Type: OnlineSystem Int32
The number of bytes to parse.
See Also