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

Grants or revokes admin privileges to a set of users in a particular group.

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

Syntax

C#
public void SetAdminStatus(
	bool isGrant,
	string userIds,
	ConfigureInfo session,
	bool isSendEmail
)
Visual Basic (Declaration)
Public Sub SetAdminStatus ( _
	isGrant As Boolean, _
	userIds As String, _
	session As ConfigureInfo, _
	isSendEmail As Boolean _
)
Visual C++
public:
void SetAdminStatus(
	bool isGrant, 
	String^ userIds, 
	ConfigureInfo^ session, 
	bool isSendEmail
)

Parameters

isGrant
Type: System..::.Boolean
Flag (True/False) indicating whether the admin privilege should be granted or revoked.
userIds
Type: System..::.String
A comma separated list of user ids
session
Type: OfficeClip.Utils..::.ConfigureInfo
The current login session
isSendEmail
Type: System..::.Boolean
Is the emails required to be sent

Remarks

Please make sure that the userDetailIds are the ones corresponding to the registered record.

See Also