Namespace: ITHit.WebDAV.Client
Exception | Condition |
---|---|
UnauthorizedException | Request is not authorized. |
NotFoundException | This resource doesn't exist on the server. |
WebDavHttpException | Server returned unknown error. |
WebDavException | In case of any unexpected error. |
string license = "<?xml version='1.0' encoding='utf... WebDavSessionAsync session = new WebDavSessionAsync(license); session.Credentials = new NetworkCredential("User1", "pwd"); IFileAsync file = await session.OpenFileAsync(new Uri("http://server/directory/file.docx")); IVersionAsync[] versions = await file.GetVersionsAsync(); foreach (IVersionAsync version in versions) { MessageBox.Show(version.VersionName); }