Click or drag to resize

IAclHierarchyItemGetSupportedPrivilegeSet Method

IT Hit WebDAV Classes Reference
Retrieves the privileges defined for the resource.

Namespace: ITHit.WebDAV.Server.Acl
Assembly: ITHit.WebDAV.Server (in ITHit.WebDAV.Server.dll) Version: 4.5.3121.0
Syntax
IEnumerable<SupportedPrivilege> GetSupportedPrivilegeSet()

Return Value

Type: IEnumerableSupportedPrivilege
List of SupportedPrivilege.
Exceptions
ExceptionCondition
NeedPrivilegesExceptionNot enough permissions.
DavExceptionIn case of other errors.
Examples

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

public IEnumerable<SupportedPrivilege> GetSupportedPrivilegeSet()
{
    RequireReadPrivilege();
    throw new DavException("Not implemented.", DavStatus.NOT_IMPLEMENTED);
}
See Also