getStationsSimple 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 Time Clock Stations available within the system

Syntax

  • AeBasicDataItemsAry = AeXMLBridge.getStationsSimple();

Parameters

  • None

Return Value

Sample Code

C#

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

Sample Code

VB.Net

1
2
3
4
5
Try
Dim stations As TAeBasicDataItem() = ws.getStationsSimple()
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try

Remarks

  • None

Possible Errors

  • None

appendEmployeeGeoPunchByIDNum
appendEmployeePunchByIDNum
appendEmployeeTransferByIDNum
extractEmployeeGPSRegistrationsByIDNum
extractTimeClockStations
punchEmployeeGeoNowByIDNum
punchEmployeeNowByIDNum
registerEmployeeGPSPresenceByIDNum
transferEmployeeNowByIDNum

Back to Top