Table of Contents

Interface IPermissionEntityLookup

Namespace
Dynamicweb.Security.Permissions
Assembly
Dynamicweb.Core.dll

Provides lookup functionality for a specific type of IPermissionEntity.

public interface IPermissionEntityLookup

Properties

PermissionName

The permission entity identifier name supported by this implementation of IPermissionEntityLookup.

string PermissionName { get; }

Property Value

string
See Also

Methods

GetPermissionEntityByKey(string)

Attempts to resolve a concrete instance of IPermissionEntity based on a key.

IPermissionEntity GetPermissionEntityByKey(string key)

Parameters

key string

The key used for looking up an instance of IPermissionEntity

Returns

IPermissionEntity

An instance of IPermissionEntity, if found; otherwise, null.

See Also
To top