Fires after wodSFTP has some data to be provided as result of RemoteRead command.
[Visual Basic]
Public RemoteDataEvent As WeOnlyDo.Client.SFTP.RemoteDataDelegate
[C#]
public RemoteDataDelegate RemoteDataEvent;
Remarks
The RemoteData event is fired if you use
RemoteRead method, and
wodSFTP manages to read remote file. Data argument will hold data for
you, and it can be also provided as Char Array or as String. More than one
RemoteData event can be fired as result of only one RemoteRead method
call.
Also, once file transfer is finished
Done event will be fired.