Method | Description | |
---|---|---|
Write ( |
Writes data to the current UsbEndpointWriter.
|
|
Write ( byte buffer, int timeout, int &transferLength ) : ErrorCode |
Writes data to the current UsbEndpointWriter.
|
|
Write ( byte buffer, int offset, int count, int timeout, int &transferLength ) : ErrorCode |
Writes data to the current UsbEndpointWriter.
|
|
Write ( object buffer, int timeout, int &transferLength ) : ErrorCode |
Writes data to the current UsbEndpointWriter.
|
|
Write ( object buffer, int offset, int count, int timeout, int &transferLength ) : ErrorCode |
Writes data to the current UsbEndpointWriter.
|
Method | Description | |
---|---|---|
CreateTransferContext ( ) : |
||
UsbEndpointWriter ( |
public Write ( |
||
pBuffer | The buffer storing the data to write. | |
offset | int | The position in buffer to start writing the data from. |
count | int | The number of bytes to write. |
timeout | int | Maximum time to wait for the transfer to complete. If the transfer times out, the IO operation will be cancelled. |
transferLength | int | Number of bytes actually transferred. |
return | ErrorCode |
public Write ( byte buffer, int timeout, int &transferLength ) : ErrorCode | ||
buffer | byte | The buffer storing the data to write. |
timeout | int | Maximum time to wait for the transfer to complete. If the transfer times out, the IO operation will be cancelled. |
transferLength | int | Number of bytes actually transferred. |
return | ErrorCode |
public Write ( byte buffer, int offset, int count, int timeout, int &transferLength ) : ErrorCode | ||
buffer | byte | The buffer storing the data to write. |
offset | int | The position in buffer to start writing the data from. |
count | int | The number of bytes to write. |
timeout | int | Maximum time to wait for the transfer to complete. If the transfer times out, the IO operation will be cancelled. |
transferLength | int | Number of bytes actually transferred. |
return | ErrorCode |
public Write ( object buffer, int timeout, int &transferLength ) : ErrorCode | ||
buffer | object | The buffer storing the data to write. |
timeout | int | Maximum time to wait for the transfer to complete. If the transfer times out, the IO operation will be cancelled. |
transferLength | int | Number of bytes actually transferred. |
return | ErrorCode |
public Write ( object buffer, int offset, int count, int timeout, int &transferLength ) : ErrorCode | ||
buffer | object | The buffer storing the data to write. |
offset | int | The position in buffer to start writing the data from. |
count | int | The number of bytes to write. |
timeout | int | Maximum time to wait for the transfer to complete. If the transfer times out, the IO operation will be cancelled. |
transferLength | int | Number of bytes actually transferred. |
return | ErrorCode |