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

Gets a list of all the users in a particular account and the date and time when they last accessed OfficeClip

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

Syntax

C#
public DataSet GetAccountUsersAccess(
	int accountId
)
Visual Basic (Declaration)
Public Function GetAccountUsersAccess ( _
	accountId As Integer _
) As DataSet
Visual C++
public:
DataSet^ GetAccountUsersAccess(
	int accountId
)

Parameters

accountId
Type: System..::.Int32
Id of a particular account

Return Value

DataSet containing a single table with the following columns
  • UserId (System.Int32) Id of the user in the account
  • UserName (System.String) Name of the user.
  • lastAccessTimestamp (System.DateTime) Date and time when the user last accessed OfficeClip

See Also