Description
-
Fires when there is data to be received.
Syntax
-
Private Sub
object_Received(ByteCount)
The Received Event syntax has these parts:
| object |
A wodSSH object. |
| ByteCount |
An Integer value. The total number of bytes
waiting to be read by your program. |
Remarks
-
The Received event will be fired each time there is data to
be read by your program using the Receive method.
The ByteCount argument will hold
the maximum number you should use with the Receive method once you
decide to read the data. You do not have to call the Receive
method immediately. However, the Received event will not be
fired again until you do Receive data that is
currently held in wodSSH's internal buffers.
|