Loads the permissions of the given IIdentity object.

Namespace: Novalys.VisualGuard.Security
Assembly: Novalys.VisualGuard.Security (in Novalys.VisualGuard.Security.dll) Version: 2016.0.105.16 (2016.0.105.16)

Syntax

C#
public static VGAuthorizationState LoadSecurity(
	IIdentity identity
)
Visual Basic
Public Shared Function LoadSecurity ( 
	identity As IIdentity
) As VGAuthorizationState

Parameters

identity
Type: System.Security.Principal..::..IIdentity
an IIdentity object representing the user.

Return Value

Type: VGAuthorizationState
A VGAuthorizationState representing the state of the authorization

Remarks

If a user has more than one role in the application, you can use the PermissionsLoading event to allow the user to select a role in the granted roles list. By default, Visual Guard will create permission set that will be a union of all permision sets granted to the roles.

Exceptions

ExceptionCondition
System..::..NotSupportedException The identity is WindowsIdentity and the repository does not support Windows authentication Mode.
Novalys.VisualGuard.Security..::..VGConfigurationExceptionThe configuration file is not valid

or

A problem occurs during the connection to the repository.

or

The version of the repository or the version of the permissions is not supported by the application.

See Also