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

InterviewQualityApi() private method

private InterviewQualityApi ( string surveyId, string interviewId ) : Uri
surveyId string
interviewId string
return System.Uri
        private Uri InterviewQualityApi(string surveyId, string interviewId)
        {
            var uriText = new StringBuilder(ConnectionClient.NfieldServerUri.AbsoluteUri);
            uriText.AppendFormat("Surveys/{0}/InterviewQuality", surveyId);
            if (!string.IsNullOrEmpty(interviewId))
                uriText.AppendFormat("/{0}", interviewId);
            return new Uri(uriText.ToString());
        }