Click or drag to resize

IHierarchyItemGetPropertyNamesAsync 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: 6.0.4052-Beta
Syntax
Task<PropertyName[]> GetPropertyNamesAsync()

Return Value

Type: TaskPropertyName

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

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 = await session.GetFileAsync(new Uri("https://server/Library/doc.txt"));
PropertyName[] names = await item.GetPropertyNamesAsync();
foreach (PropertyName name in names)
{
   Console.WriteLine(name);
}
See Also