IResource.CheckedOut Property

IT Hit WebDAV for .NET

Provides information whether item is in checked-in or checked-out state.

[Visual Basic]
Property CheckedOut As Boolean
[C#]
bool CheckedOut {get;}

Property Value

Boolean value indicating if item is in checked-out state.

Example

The following example demonstrates how to find out if item is in checked-out state.

                
string license = "<?xml version='1.0' encoding='utf...
WebDavSession session = new WebDavSession(license);
session.Credentials = new NetworkCredential("User1", "pwd");

IResource resource = session.OpenResource(new Uri("http://server/directory/resource.docx"));
if (resource.CheckedOut)
    MessageBox.Show("The item is checked-out.");
else
    MessageBox.Show("The item is checked-in.");
                
            

See Also

IResource Interface | ITHit.WebDAV.Client Namespace