Click or drag to resize

IHierarchyItemGetPropertyNames Method

IT Hit WebDAV Classes Reference
Returns names of all custom properties exposed by this item.

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

Return Value

Type: PropertyName

[Missing <returns> documentation for "M:ITHit.WebDAV.Client.IHierarchyItem.GetPropertyNames"]

Exceptions
ExceptionCondition
NotFoundExceptionThis item doesn't exist on the server.
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[] names = item.GetPropertyNames();
foreach (PropertyName name in names)
{
   Console.WriteLine(name);
}
See Also