Méthode | Description | |
---|---|---|
BeginRead ( byte buffer, int offset, int count, AsyncCallback callback, object state ) : IAsyncResult | ||
BeginWrite ( byte buffer, int offset, int count, AsyncCallback callback, object state ) : IAsyncResult | ||
EndRead ( IAsyncResult asyncResult ) : int | ||
EndWrite ( IAsyncResult asyncResult ) : void | ||
Flush ( ) : void | ||
GetFeature ( byte buffer ) : void |
Sends a Get Feature setup request.
|
|
GetFeature ( byte buffer, int offset, int count ) : void |
Sends a Get Feature setup request.
|
|
Read ( ) : byte[] |
Reads HID Input Reports.
|
|
Read ( byte buffer ) : int |
Reads HID Input Reports.
|
|
Seek ( long offset, SeekOrigin origin ) : long | ||
SetFeature ( byte buffer ) : void |
Sends a Set Feature setup request.
|
|
SetFeature ( byte buffer, int offset, int count ) : void |
Sends a Set Feature setup request.
|
|
SetLength ( long value ) : void | ||
Write ( byte buffer ) : void |
Writes an HID Output Report to the device.
|
Méthode | Description | |
---|---|---|
CommonRead ( byte buffer, int offset, int count, Queue |
||
CommonWrite ( byte buffer, int offset, int count, Queue |
||
GetTimeout ( int startTime, int timeout ) : int | ||
HandleAcquire ( ) : bool | ||
HandleAcquireIfOpenOrFail ( ) : void | ||
HandleClose ( ) : bool | ||
HandleFree ( ) : void | ||
HandleInitAndOpen ( ) : void | ||
HandleRelease ( ) : void | ||
HidStream ( ) : System |
public BeginRead ( byte buffer, int offset, int count, AsyncCallback callback, object state ) : IAsyncResult | ||
buffer | byte | |
offset | int | |
count | int | |
callback | AsyncCallback | |
state | object | |
Résultat | IAsyncResult |
public BeginWrite ( byte buffer, int offset, int count, AsyncCallback callback, object state ) : IAsyncResult | ||
buffer | byte | |
offset | int | |
count | int | |
callback | AsyncCallback | |
state | object | |
Résultat | IAsyncResult |
public EndRead ( IAsyncResult asyncResult ) : int | ||
asyncResult | IAsyncResult | |
Résultat | int |
public EndWrite ( IAsyncResult asyncResult ) : void | ||
asyncResult | IAsyncResult | |
Résultat | void |
public GetFeature ( byte buffer ) : void | ||
buffer | byte | The buffer to fill. Place the Report ID in the first byte. |
Résultat | void |
public abstract GetFeature ( byte buffer, int offset, int count ) : void | ||
buffer | byte | The buffer to fill. Place the Report ID in the byte at index |
offset | int | The index in the buffer to begin filling with data. |
count | int | The number of bytes in the feature request. |
Résultat | void |
public Read ( byte buffer ) : int | ||
buffer | byte | The buffer to place the reports into. |
Résultat | int |
public Seek ( long offset, SeekOrigin origin ) : long | ||
offset | long | |
origin | SeekOrigin | |
Résultat | long |
public SetFeature ( byte buffer ) : void | ||
buffer | byte | The buffer of data to send. Place the Report ID in the first byte. |
Résultat | void |
public abstract SetFeature ( byte buffer, int offset, int count ) : void | ||
buffer | byte | The buffer of data to send. Place the Report ID in the byte at index |
offset | int | The index in the buffer to start the write from. |
count | int | The number of bytes in the feature request. |
Résultat | void |
public Write ( byte buffer ) : void | ||
buffer | byte | The buffer containing the report. Place the Report ID in the first byte. |
Résultat | void |