-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upload file to webdav using a stream #63
Comments
Hi @unconnected , I haven't tried this but I believe it's possible to get upload progress by passing an There's an example of such handler in one of old ASP.NET libs. It would be nice to support progress of upload/download within the lib but I don't have near future plans to add it. |
Thanks for the heads up! I'll dive into this :P |
Hi @unconnected, did you manage it? Looking for the same! |
For me it worked perfectly using |
I use your lib for downloading files from a webdav server and works perfectly. I'm using it with the exposed stream that was later added here:
#52
and using it like this:
#31
I can also upload files, but not with progress report, since PutFile doesn't support streams the way GetRawFile() does. Is that something that is possible to add to the lib? Passing a stream to PutFile and then start writing to that stream so that the content is uploaded to the webdav server?
The text was updated successfully, but these errors were encountered: