Click or drag to resize

VGSecurityManagerCheckVersion Event

Allows to check if the version of the repository permissions is compatible with the version of the application.

Namespace:  Novalys.VisualGuard.Security
Assembly:  Novalys.VisualGuard.Security (in Novalys.VisualGuard.Security.dll) Version: 2019.1.831.19 (2019.1.0831.19)
Syntax
public static event VGCheckVersionEventHandler CheckVersion

Value

Type: Novalys.VisualGuard.SecurityVGCheckVersionEventHandler
Remarks
Occurs after the authentication and before loading permissions.
Examples
This example display how to use the event CheckVersion to allow the user select a roles in the list of granted roles.
private void OnCheckVersion (object sender, VGCheckVersionEventArgs args)
{
    if (e.Version < new Version(1,2,0,0))
    {
        e.Cancel = true
    }
}
See Also