IHierarchyItemGetPropertyNames Method
IT Hit WebDAV Classes Reference
Gets names of all properties for this item.
Namespace: ITHit.WebDAV.ServerAssembly: ITHit.WebDAV.Server (in ITHit.WebDAV.Server.dll) Version: 4.5.3121.0
SyntaxIEnumerable<PropertyName> GetPropertyNames()
Function GetPropertyNames As IEnumerable(Of PropertyName)
IEnumerable<PropertyName>^ GetPropertyNames()
abstract GetPropertyNames : unit -> IEnumerable<PropertyName>
Return Value
Type:
IEnumerablePropertyName
Enumerable with available property names.
RemarksMost WebDAV clients never request list of property names, so your implementation can just return
empty enumerable.
ExamplesThe 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