IAclHierarchyItemGetOwner Method
IT Hit WebDAV Classes Reference
Retrieves a particular principal as being the "owner" of the item. Since the owner of a
resource often has special access control capabilities (e.g., the owner frequently has permanent
WriteAcl privilege), clients might display the resource owner in their user
interface.
Namespace: ITHit.WebDAV.Server.AclAssembly: ITHit.WebDAV.Server (in ITHit.WebDAV.Server.dll) Version: 4.5.3121.0
SyntaxFunction GetOwner As IPrincipal
abstract GetOwner : unit -> IPrincipal
Return Value
Type:
IPrincipal
Item that represents owner of this item and implements
IPrincipal.
Exceptions
RemarksCan be null.
ExamplesThe code below is part of 'WebDAVServer.NtfsNtlmAcl' sample provided with the SDK.
public IPrincipal GetOwner()
{
throw new DavException("Not implemented.", DavStatus.NOT_IMPLEMENTED);
}
See Also