GetFeature Method (Byte[], Int32, Int32)

HidSharp

HidStream GetFeature Method ( Byte , Int32, Int32) HIDSharp
Sends a Get Feature setup request.

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

Syntax

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

Parameters

buffer
Type:  OnlineSystem Byte 
The buffer to fill. Place the Report ID in the byte at index offset.
offset
Type: OnlineSystem Int32
The index in the buffer to begin filling with data.
count
Type: OnlineSystem Int32
The number of bytes in the feature request.
See Also