Retrieves values of specific properties.
Array of requested properties with values.
| Exception Type | Condition |
|---|---|
| NotFoundException | This item doesn't exist on the server. |
| PropertyForbiddenException | User has not enough rights to obtain one of requested properties. |
| PropertyNotFoundException | If one of requested properties was not found. |
| PropertyException | Server returned unknown error for specific property. |
| WebDavHttpException | Server returned unknown error. |
| WebDavException | Unexpected error occurred. |
string license = "<?xml version='1.0' encoding='utf...
WebDavSession session = new WebDavSession(license);
session.Credentials = new NetworkCredential("User1", "pwd", "DOMAIN");
IHierarchyItem item = session.OpenResource(new Uri("https://server/Library/doc.txt"));
PropertyName[] propNames = new PropertyName[2];
propNames[0] = new PropertyName("ManagerApproved", "Sales");
propNames[1] = new PropertyName("Branch", "Sales");
Property[] properties = item.GetPropertyValues(propNames);
foreach(Property prop in properties)
{
Console.WriteLine(prop.Name.NamespaceUri + ":" + prop.Name.Name + " " + prop.StringValue);
}
IHierarchyItem Interface | ITHit.WebDAV.Client Namespace