[This is preliminary documentation and is subject to change.]

Returns the role access array of a particular user of a particular group.

Namespace:  OfficeClip.DBLayer.Security
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public bool[] GetAccessInfo(
	int userId,
	int groupId
)
Visual Basic (Declaration)
Public Function GetAccessInfo ( _
	userId As Integer, _
	groupId As Integer _
) As Boolean()
Visual C++
public:
array<bool>^ GetAccessInfo(
	int userId, 
	int groupId
)

Parameters

userId
Type: System..::.Int32
The unique id of the user
groupId
Type: System..::.Int32
the unique id of the group

Return Value

null if there is an error or the user does not belong to this group, the access array otherwise.

See Also