Namespace: ITHit.WebDAV.Client
Exception | Condition |
---|---|
UnauthorizedException | Incorrect credentials provided or insufficient permissions to access the requested item. |
NotFoundException | The requested resource doesn't exist on the server. |
ForbiddenException | The server refused to fulfill the request. |
WebDavException | Unexpected error occurred. |
string license = "<?xml version='1.0' encoding='utf... WebDavSessionAsync session = new WebDavSessionAsync(license); session.Credentials = new NetworkCredential("User1", "pwd"); IFileAsync file = await session.OpenFileAsync("http://server:8080/Products/image.gif"); file.TimeOut = 36000000; // 10 hours using (Stream webStream = await file.GetReadStreamAsync()) { int bufSize = 1048576; // 1Mb byte[] buffer = new byte[bufSize]; int bytesRead = 0; using (FileStream fileStream = File.OpenWrite(file.DisplayName)) { while ((bytesRead = await webStream.ReadAsync(buffer, 0, bufSize)) > 0) await fileStream.WriteAsync(buffer, 0, bytesRead); } }