USBPipeWrite Method (Byte, Int32, Int32) |
Writes data from a buffer to the pipe.
Namespace:
MadWizard.WinUSBNet
Assembly:
WinUSBNet (in WinUSBNet.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic void Write(
byte[] buffer,
int offset,
int length
)
Public Sub Write (
buffer As Byte(),
offset As Integer,
length As Integer
)
public:
void Write(
array<unsigned char>^ buffer,
int offset,
int length
)
Parameters
- buffer
- Type: SystemByte
The buffer to write data from. - offset
- Type: SystemInt32
The byte offset in buffer from which to begin writing. - length
- Type: SystemInt32
The number of bytes to write, starting at offset
See Also