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

Update the role access parameters in the database

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

Syntax

C#
public DBConstants..::.ReturnValue UpdateRoleAccess(
	int groupId,
	int roleId,
	int userId,
	RoleAccess[] ras
)
Visual Basic (Declaration)
Public Function UpdateRoleAccess ( _
	groupId As Integer, _
	roleId As Integer, _
	userId As Integer, _
	ras As RoleAccess() _
) As DBConstants..::.ReturnValue
Visual C++
public:
DBConstants..::.ReturnValue UpdateRoleAccess(
	int groupId, 
	int roleId, 
	int userId, 
	array<RoleAccess^>^ ras
)

Parameters

groupId
Type: System..::.Int32
The unique id of the group
roleId
Type: System..::.Int32
The unique id of the role
userId
Type: System..::.Int32
The unique id of the user who is changing the role
ras
Type: array<OfficeClip.BusinessLayer.Security..::.RoleAccess>[]()[]
The array of roleaccess objects

Return Value

Enumerated type that shows the result of the operation

See Also