Click or drag to resize

IHierarchyItemGetPropertyNames Method

IT Hit WebDAV Classes Reference
Gets names of all properties for this item.

Namespace: ITHit.WebDAV.Server
Assembly: ITHit.WebDAV.Server (in ITHit.WebDAV.Server.dll) Version: 4.5.3121.0
Syntax
IEnumerable<PropertyName> GetPropertyNames()

Return Value

Type: IEnumerablePropertyName
Enumerable with available property names.
Remarks

Most WebDAV clients never request list of property names, so your implementation can just return empty enumerable.

Examples

The code below is part of 'WebDAVServer.NtfsStorage' sample provided with the SDK.

public IEnumerable<PropertyName> GetPropertyNames()
{
    var propertyValues = getPropertyValues();
    return propertyValues.Select(p => p.QualifiedName);
}
See Also