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

Updates the application access for the currently selected group.

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

Syntax

C#
public void UpdateApplicationAccess(
	int groupId,
	int applicationId,
	bool isDeleted
)
Visual Basic (Declaration)
Public Sub UpdateApplicationAccess ( _
	groupId As Integer, _
	applicationId As Integer, _
	isDeleted As Boolean _
)
Visual C++
public:
void UpdateApplicationAccess(
	int groupId, 
	int applicationId, 
	bool isDeleted
)

Parameters

groupId
Type: System..::.Int32
Unique id of the organization.
applicationId
Type: System..::.Int32
Id of the application for which the access needs to be updated.
isDeleted
Type: System..::.Boolean
Flag (True/False) indicating whether the access to a particular application should be removed or added. It is removed when isDeleted is equal to True and it is added when it is equal to False.

See Also