/// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='startDateFrom'> /// Beginning of the range for start date subject courses. /// </param> /// <param name='startDateTo'> /// End of the range for start date subject courses. /// </param> /// <param name='pageNumber'> /// The number of the page to return (1 is the first page). /// </param> /// <param name='pageSize'> /// Number of objects per page. /// </param> /// <param name='inlineCount'> /// A flag indicating if total number of items should be included. /// </param> /// <param name='schoolCode'> /// The school code for which to get data. /// </param> /// <param name='lmsIndicator'> /// Is the entity to be created in the LMS. /// If not specified, then the value of the LMS indicator is disregarded in the /// filtering. /// </param> /// <param name='xSelectedSchoolCode'> /// Selected school code, used when multiple impersonation permissions are /// available on the token /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task <PagedResponseSubjectCourseExternalResponse> GetAsync(this ISubjectCoursesExternal operations, System.DateTime startDateFrom, System.DateTime startDateTo, int pageNumber, int pageSize, bool inlineCount, string schoolCode, bool?lmsIndicator = default(bool?), string xSelectedSchoolCode = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(startDateFrom, startDateTo, pageNumber, pageSize, inlineCount, schoolCode, lmsIndicator, xSelectedSchoolCode, null, cancellationToken).ConfigureAwait(false)) { return(_result.Body); } }
/// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='startDateFrom'> /// Beginning of the range for start date subject courses. /// </param> /// <param name='startDateTo'> /// End of the range for start date subject courses. /// </param> /// <param name='pageNumber'> /// The number of the page to return (1 is the first page). /// </param> /// <param name='pageSize'> /// Number of objects per page. /// </param> /// <param name='inlineCount'> /// A flag indicating if total number of items should be included. /// </param> /// <param name='schoolCode'> /// The school code for which to get data. /// </param> /// <param name='lmsIndicator'> /// Is the entity to be created in the LMS. /// If not specified, then the value of the LMS indicator is disregarded in the /// filtering. /// </param> /// <param name='xSelectedSchoolCode'> /// Selected school code, used when multiple impersonation permissions are /// available on the token /// </param> public static PagedResponseSubjectCourseExternalResponse Get(this ISubjectCoursesExternal operations, System.DateTime startDateFrom, System.DateTime startDateTo, int pageNumber, int pageSize, bool inlineCount, string schoolCode, bool?lmsIndicator = default(bool?), string xSelectedSchoolCode = default(string)) { return(operations.GetAsync(startDateFrom, startDateTo, pageNumber, pageSize, inlineCount, schoolCode, lmsIndicator, xSelectedSchoolCode).GetAwaiter().GetResult()); }