WebDavClient
WebDavClient copied to clipboard
Asynchronous cross-platform WebDAV client for .NET Core
When the WebDav server returns invalid XML, the exception is eaten by `XDocumentExt.TryParse` and the caller is left with an empty parsed response and no idea why it is empty.
I want to to something like this: `curl -u user -X MKCOL 'http://localhost:5232/user/calendar' --data \ ' Calendar Example calendar #ff0000ff '` Who can I do this with the WebDavClient?
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: https://github.com/skazantsev/WebDavClient/pull/52 and using it...
When I'm trying to propfine to list all folders and files. Items that in the Arabic language are retrieved in a strange format: ex (/remote.php/dav/files/%d8%aa%d9%8a%d8%b3%d8%aa/) as you can see the...
Foreword: I understand this is **not** how MKCOL is defined in **WEBDAV**, even though it could be nice if... Could be nice to have a modified MKCOL method, to request...
Basic search is implemented in https://github.com/skazantsev/WebDavClient/issues/68 but it's quite limited. It would be nice to implement all functionality specified in [The DAV:basicsearch Grammar](http://www.webdav.org/specs/rfc5323.html#basicsearch). This requires meaningful changes in the current...
Is it possible to get the URI of the folder on webdav server by the fileid property, which I have already stored in my database?
I have a WebDAV server on a local network, to access it over TLS/SSL I have to set up a certificate with a dummy CA, which is quite annoying. Can...
``` Using res = Await _client.GetRawFile(_remot_path) Using strm = New StreamReader(res.Stream) Dim _outFile = strm.ReadToEnd() ``` output is just **����**
**I'm trying to use this lib but When I upload files the respose came with no exception but file didnot uploaded** my code : ``` Public Async Sub uploadFile() Try...