Checks whether the authenticated user has the specified permissions. This method always returns truw when authentication is disabled.

Namespace: StreamBase.LiveView.API
Assembly: StreamBase.LiveView.API (in StreamBase.LiveView.API.dll) Version: 11.1.0.0 (11.1.0.8)

Syntax

         
 C#  Visual Basic  Visual C++ 
IList<bool> CheckPermissions(
	List<LiveViewPermission> perms
)
Function CheckPermissions ( _
	perms As List(Of LiveViewPermission) _
) As IList(Of Boolean)
IList<bool>^ CheckPermissions(
	List<LiveViewPermission^>^ perms
)

Parameters

perms
List<(Of <(<'LiveViewPermission>)>)>
A List of permissions to check for

Return Value

A list of booleans corresponding to the permissions to check for, with true indicating the current user has permission

See Also