This event is fired after one Kermit command is executed successfully or it fails
[Visual Basic .NET] Public Event KCommandDone(ByVal Success As Boolean, ByVal Length As Integer, ByVal Data As Byte()) |
[C#] public event KCommandDone(bool Success, int Length, byte[] Data); |
Parameters
Success
Kermit command execution status flag, if it is true, execution is successful, otherwise execution fails.
Length
Length for array of bytes for the data stream about the Kermit command execution status sent back from Kermit server.
Data
Array of bytes for the data stream about the Kermit command execution status sent back from Kermit server.
Remarks
You can obtain the Kermit command execution status via this event.