SetFeature Method (Byte[], Int32, Int32)

HidSharp

HidStream SetFeature Method ( Byte , Int32, Int32) HIDSharp
Sends a Set Feature setup request.

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

Syntax

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

Parameters

buffer
Type:  OnlineSystem Byte 
The buffer of data to send. Place the Report ID in the byte at index offset.
offset
Type: OnlineSystem Int32
The index in the buffer to start the write from.
count
Type: OnlineSystem Int32
The number of bytes in the feature request.
See Also