Click or drag to resize

IAclHierarchyItemResolveWellKnownPrincipal Method

IT Hit WebDAV Classes Reference
Returns predefined principal.

Namespace: ITHit.WebDAV.Server.Acl
Assembly: ITHit.WebDAV.Server (in ITHit.WebDAV.Server.dll) Version: 4.5.3121.0
Syntax
IPrincipal ResolveWellKnownPrincipal(
	WellKnownPrincipal wellKnownPrincipal
)

Parameters

wellKnownPrincipal
Type: ITHit.WebDAV.Server.AclWellKnownPrincipal
One of WellKnownPrincipal values.

Return Value

Type: IPrincipal
Well known principal or null if it is not supported.
Examples

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

public IPrincipal ResolveWellKnownPrincipal(WellKnownPrincipal wellKnownPrincipal)
{
    throw new DavException("Not implemented.", DavStatus.NOT_IMPLEMENTED);
}
See Also