Click or drag to resize

IHierarchyItemGetPropertyValues Method

IT Hit WebDAV Classes Reference
Retrieves values of specific properties.

Namespace:  ITHit.WebDAV.Client
Assembly:  ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 2.0.420.0
Syntax
Property[] GetPropertyValues(
	PropertyName[] names
)

Parameters

names
Type: ITHit.WebDAV.ClientPropertyName

[Missing <param name="names"/> documentation for "M:ITHit.WebDAV.Client.IHierarchyItem.GetPropertyValues(ITHit.WebDAV.Client.PropertyName[])"]

Return Value

Type: Property
Array of requested properties with values.
Exceptions
ExceptionCondition
NotFoundExceptionThis item doesn't exist on the server.
PropertyForbiddenExceptionUser has not enough rights to obtain one of requested properties.
PropertyNotFoundExceptionIf one of requested properties was not found.
PropertyExceptionServer returned unknown error for specific property.
WebDavHttpExceptionServer returned unknown error.
WebDavExceptionUnexpected error occurred.
Examples
string license = "<?xml version='1.0' encoding='utf...
WebDavSession session = new WebDavSession(license);
session.Credentials = new NetworkCredential("User1", "pwd", "DOMAIN");

IHierarchyItem item = session.OpenFile(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);
}
See Also