 | AcademicServiceGetFacultyForSection Method |
Gets the faculty members assigned to a section.
Namespace:
(Default Namespace)
Assembly:
SeniorSystemsWS (in SeniorSystemsWS.dll) Version: 937.0.0.0 (937.0.0.33)
Syntaxpublic Person[] GetFacultyForSection(
string schoolID,
string sectionID,
bool nextYear,
string authKey
)
Public Function GetFacultyForSection (
schoolID As String,
sectionID As String,
nextYear As Boolean,
authKey As String
) As Person()
public:
array<Person^>^ GetFacultyForSection(
String^ schoolID,
String^ sectionID,
bool nextYear,
String^ authKey
)
public function GetFacultyForSection(
schoolID : String,
sectionID : String,
nextYear : boolean,
authKey : String
) : Person[]
function GetFacultyForSection(schoolID, sectionID, nextYear, authKey);
Parameters
- schoolID
- Type: SystemString
The School ID. - sectionID
- Type: SystemString
The Section ID. - nextYear
- Type: SystemBoolean
If set to False, it will return the Faculty assigned to the Section for the current academic year, otherwise
it will return the Faculty assigned for the next year. - authKey
- Type: SystemString
Authentication Key obtained from the loginExt method in UserManagementService for a current administrator connection.
Return Value
Type:
PersonA list of
Person objects.
Exceptions
Remarks
The authorization key provided must be linked to an administrator role.
See Also