Gets a value indicating whether the currently logged-on user is in the specified role.

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

Syntax

C#
[ObsoleteAttribute("This class is obsolete now, plz use VGSecurityManager.Runtime.Roles", 
	true)]
public static bool IsUserInRole(
	Guid roleId
)
Visual Basic
<ObsoleteAttribute("This class is obsolete now, plz use VGSecurityManager.Runtime.Roles", 
	true)> 
Public Shared Function IsUserInRole ( 
	roleId As Guid
) As Boolean

Parameters

roleId
Type: System..::..Guid
The repository id of the role to search in.

Return Value

Type: Boolean
true if the currently logged-on user is in the specified role; otherwise, false.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionThere is no current logged-on user.

See Also