You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This library looks good, though I have no idea how to use it because there is no documentation at all. The examples don't give a clue on how to use the upload function. I searched for hours but could not find anything, where to find the documentaion?
The text was updated successfully, but these errors were encountered:
Hi! There is an example for downloading a file. Uploading basically works the same. Here's a shortened version:
var client = new TftpClient("localhost");
var transfer = client.Upload("filename-on-server.pdf");
Stream fileToUpload = File.OpenRead(@"C:\temp\file-to-upload.pdf");
transfer.Start(fileToUpload);
This library looks good, though I have no idea how to use it because there is no documentation at all. The examples don't give a clue on how to use the upload function. I searched for hours but could not find anything, where to find the documentaion?
The text was updated successfully, but these errors were encountered: