 | DataExportServiceGetAllWebUsersExt Method |
Gets all web users, selecting those matching a list of criteria.
Namespace:
(Default Namespace)
Assembly:
SeniorSystemsWS (in SeniorSystemsWS.dll) Version: 937.0.0.0 (937.0.0.33)
Syntaxpublic Person[] GetAllWebUsersExt(
string authKey,
int numberOfRecords,
int lastEntityNumber,
DateTime lastUpdateDate,
List<WSMethodParam> parameters
)
Public Function GetAllWebUsersExt (
authKey As String,
numberOfRecords As Integer,
lastEntityNumber As Integer,
lastUpdateDate As DateTime,
parameters As List(Of WSMethodParam)
) As Person()
public:
array<Person^>^ GetAllWebUsersExt(
String^ authKey,
int numberOfRecords,
int lastEntityNumber,
DateTime lastUpdateDate,
List<WSMethodParam^>^ parameters
)
public function GetAllWebUsersExt(
authKey : String,
numberOfRecords : int,
lastEntityNumber : int,
lastUpdateDate : DateTime,
parameters : List<WSMethodParam>
) : Person[]
function GetAllWebUsersExt(authKey, numberOfRecords, lastEntityNumber, lastUpdateDate, parameters);
Parameters
- authKey
- Type: SystemString
Authentication Key obtained from the loginExt method in UserManagementService for a current administrator connection. - numberOfRecords
- Type: SystemInt32
The number of records to return with this call. - lastEntityNumber
- Type: SystemInt32
The last entity number. The next page of records will begin with persons with a higher entity number. - lastUpdateDate
- Type: SystemDateTime
The last update date. The next page of records will only contain persons who have had changed made since this date. - parameters
- Type: System.Collections.GenericListWSMethodParam
The options to use to limit the records selected.
Return Value
Type:
PersonA list of
Person objects.
Exceptions
Remarks
Typically, this call is made in a loop for performance reasons. The first call, will have lastEntityNo = 0. The next call would contain the
entity number of the last record.
See Parameter Options for a list of parameters to use
for the WSMethodParam[].Parameter property.
The authorization key provided must be linked to an administrator role.
See Also