public async Task GetJobsMore() { var jobs = await Vacancy.GetMoreVacanciesAsync(Helper.Client, Helper.Kind).ConfigureAwait(false); foreach (var value in jobs) { if (value.Undeserialized != null) { throw new JsonException("Undeserialized is not empty"); } } var json = JsonSerializer.Serialize(jobs, Core.Options); }