Defines the interface for a system in charge of checking if a given object is allowed for given type of access. All security logics to be defined here. It is a pure model with no data access. For object, use "Allow" method to determine what can be done with given object For Manager, only need to worry about "Create" permissions. All method will compare the current users (or anonymous)' permission and viewing level against object's permission and viewing level

Namespace: Cartella.Interfaces
Assembly: CartellaData (in CartellaData.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
public interface ISecurityManager
Visual Basic
Public Interface ISecurityManager
Visual C++
public interface class ISecurityManager

See Also