Nfield.Services.Implementation.NfieldInterviewQualityService.QueryAsync C# (CSharp) Method

QueryAsync() public method

public QueryAsync ( string surveyId ) : Task>
surveyId string
return Task>
        public Task<IQueryable<InterviewDetailsModel>> QueryAsync(string surveyId)
        {
            CheckSurveyId(surveyId);

            return Client.GetAsync(InterviewQualityApi(surveyId, null).AbsoluteUri)
                .ContinueWith(
                    responseMessageTask => responseMessageTask.Result.Content.ReadAsStringAsync().Result)
                .ContinueWith(
                    stringTask =>
                        JsonConvert.DeserializeObject<List<InterviewDetailsModel>>(stringTask.Result).AsQueryable())
                .FlattenExceptions();
        }

Same methods

NfieldInterviewQualityService::QueryAsync ( string surveyId, string interviewId ) : Task