  | AcademicServiceGetSectionSchedule Method  | 
 
            Gets the section meeting times.
            
 
    Namespace: 
   (Default Namespace)
    Assembly:
   SeniorSystemsWS (in SeniorSystemsWS.dll) Version: 937.0.0.0 (937.0.0.33)
Syntaxpublic SectionScheduleLine[] GetSectionSchedule(
	string schoolID,
	string sectionID,
	bool nextYear,
	string authKey
)
Public Function GetSectionSchedule ( 
	schoolID As String,
	sectionID As String,
	nextYear As Boolean,
	authKey As String
) As SectionScheduleLine()
public:
array<SectionScheduleLine^>^ GetSectionSchedule(
	String^ schoolID, 
	String^ sectionID, 
	bool nextYear, 
	String^ authKey
)
public function GetSectionSchedule(
	schoolID : String, 
	sectionID : String, 
	nextYear : boolean, 
	authKey : String
) : SectionScheduleLine[]
function GetSectionSchedule(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 meeting times assigned for the current academic year, otherwise
            it will return the meeting times for the next year. - authKey
 - Type: SystemString
Authentication Key obtained from the loginExt method in UserManagementService for a current administrator connection. 
Return Value
Type: 
SectionScheduleLineA list of 
SectionScheduleLine objects.
Exceptions
Remarks
            The authorization key provided must be linked to an administrator role.
            
See Also