getAccessAccounts() Method

Table of Contents

  1. Function
  2. Syntax
  3. Parameters
  4. Return Value
  5. Sample Code
  6. Remarks
  7. Possible Errors
  8. Related Methods

Function

  • Returns a list of all domain accounts for the selected client database

Syntax

  • AeAccessAccountAry = AeXMLBridge.getAccessAccounts();

Parameters

  • None

Return Value

Sample Code

C#

1
2
3
4
5
6
7
8
try
{
TAeAccessAccount[] accounts = ws.getAccessAccounts();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

VB.Net

1
2
3
4
5
Try
Dim accounts As TAeAccessAccount() = ws.getAccessAccounts()
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try

Remarks

  • The access account used to execute this method must have sufficient priveleges to access other users. Otherwise, this method will return an empty list.
  • Accounts returned executing the method will not display the password value

Possible Errors

  • None

accessAccountCodeExists
addAccessAccount
addAccessAccountWorkgroupAccessRightByAccountCode
editAccessAccount
getAccessAccountViaAccountCode
getAccessAccountViaUniqueID
getAccessAccountWorkgroupAccessRightsByAccountCode
getCurrentAccessAccount
getEmptyAccessAccount
loadAccessAccountActivitysInRange
removeAccessAccount
removeAccessAccountAllWorkgroupAccessRightsByAccountCode

Back to Top