 | DataExportServiceGetAllWebUsers Method |
Gets all web users.
Namespace:
(Default Namespace)
Assembly:
SeniorSystemsWS (in SeniorSystemsWS.dll) Version: 937.0.0.0 (937.0.0.33)
Syntaxpublic Person[] GetAllWebUsers(
string authKey,
bool includeSpouseInfo,
bool includeStudents
)
Public Function GetAllWebUsers (
authKey As String,
includeSpouseInfo As Boolean,
includeStudents As Boolean
) As Person()
public:
array<Person^>^ GetAllWebUsers(
String^ authKey,
bool includeSpouseInfo,
bool includeStudents
)
public function GetAllWebUsers(
authKey : String,
includeSpouseInfo : boolean,
includeStudents : boolean
) : Person[]
function GetAllWebUsers(authKey, includeSpouseInfo, includeStudents);
Parameters
- authKey
- Type: SystemString
Authentication Key obtained from the loginExt method in UserManagementService for a current administrator connection. - includeSpouseInfo
- Type: SystemBoolean
If set to True, then the returned Person structure will include spouse information. - includeStudents
- Type: SystemBoolean
If set to True, then the returned Person structure will include the Person's students' (children) information.
Return Value
Type:
PersonA list of
Person objects.
Exceptions
RemarksThe authorization key provided must be linked to an administrator role.
See Also