Note: This API is now obsolete.
Namespace: ITHit.WebDAV.Client
Exception | Condition |
---|---|
NotUnderVersionControlException | This resource is not version controlled. |
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")); if (await file.IsCheckedOutAsync()) MessageBox.Show("The item is checked-out."); else MessageBox.Show("The item is checked-in.");