|
PortController.NET
BytesUsedRQ Property
Returns a long integer indicating how many bytes are in the receive queue.
Syntax
[Visual Basic]
object.BytesUsedRQ
[C#]
object.BytesUsedRQ
[C++]
object->BytesUsedRQ
Parameters
object
An object expression that evaluates to a PortController object.
Return Value
A long integer representing the number of bytes in the receive queue.
Remarks
This property is read-only.
Errors
None
Example
[Visual Basic]
Dim bytesUsed As Int32
bytesUsed = myPortController.BytesUsedRQ
[C#]
Int32 BytesUsed = myPortController.BytesUsedRQ;
[C++]
Int32 BytesUsed = myPortController->BytesUsedRQ;
See Also
BytesUsedTQ property | ClearRQ method | ClearTQ method
|