 | DataExportServiceGetAllFaculty Method |
Note: This API is now obsolete.
Namespace:
(Default Namespace)
Assembly:
SeniorSystemsWS (in SeniorSystemsWS.dll) Version: 937.0.0.0 (937.0.0.33)
Syntax[ObsoleteAttribute("Use GetAllPersons instead")]
public Person[] GetAllFaculty(
string authKey,
bool webusersOnly,
bool includeSpouseInfo,
bool includeStudents
)
<ObsoleteAttribute("Use GetAllPersons instead")>
Public Function GetAllFaculty (
authKey As String,
webusersOnly As Boolean,
includeSpouseInfo As Boolean,
includeStudents As Boolean
) As Person()
public:
[ObsoleteAttribute(L"Use GetAllPersons instead")]
array<Person^>^ GetAllFaculty(
String^ authKey,
bool webusersOnly,
bool includeSpouseInfo,
bool includeStudents
)
public function GetAllFaculty(
authKey : String,
webusersOnly : boolean,
includeSpouseInfo : boolean,
includeStudents : boolean
) : Person[]
function GetAllFaculty(authKey, webusersOnly, includeSpouseInfo, includeStudents);
Parameters
- authKey
- Type: SystemString
Authentication Key obtained from the loginExt method in UserManagementService - webusersOnly
- Type: SystemBoolean
if set to True then only faculty having web accounts will be returned. - 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.
Remarks
See Also