Re: Calling the Done_Event with SFTP.NET (General questions)
Jason,
yes this is possible. You can do, for example, this:
[code]sftp1_DoneEvent(Sender, null);[/code]
or this
[code]WeOnlyDo.Client.SFTP.DoneArgs doneargs = new WeOnlyDo.Client.SFTP.DoneArgs(Args.Error);
sftp1_DoneEvent(Sender, doneargs);[/code]
can you try if this will work for you?