Checks if the currently active user is a member of any of the roles with IDs in the array that is passedas a parameter.

Namespace: MonoSoftware.MonoX.Utilities
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static bool IsUserInRoles(
	Guid[] roles
)
Visual Basic
Public Shared Function IsUserInRoles ( 
	roles As Guid()
) As Boolean
Visual C++
public:
static bool IsUserInRoles(
	array<Guid>^ roles
)
F#
static member IsUserInRoles : 
        roles : Guid[] -> bool 

Parameters

roles
Type: array<System..::..Guid>[]()[][]
Roles array

Return Value

Type: Boolean
True if the user is in one of the roles, false if not

See Also