Namespace: ITHit.WebDAV.Client
The IMultistatus type exposes the following members.
| Name | Description | |
|---|---|---|
| Description | 
            Gets the generic description, if available.
              | |
| Responses | 
            Array of the errors returned by server.
              | 
string license = "<?xml version='1.0' encoding='utf... WebDavSession session = new WebDavSession(license); session.Credentials = new NetworkCredential("User1", "pwd"); IFolder folder = await session.GetFolderAsync(new Uri("https://server/Library")); try { await folder.DeleteAsync(); } catch(WebDavHttpException ex) { Console.WriteLine(ex.Status.Code + " " + ex.Status.Description + " " + ex.Message); foreach(IMultistatusResponse resp in ex.Multistatus.Responses) {// Find which items failed to delete. Console.WriteLine(resp.Href + " " + resp.Status.Code + " " + resp.Status.Description); } }