Nfield.Services.Implementation.NfieldSurveyDataService.SurveyDataUrl C# (CSharp) 메소드

SurveyDataUrl() 개인적인 메소드

private SurveyDataUrl ( string surveyId ) : string
surveyId string
리턴 string
        private string SurveyDataUrl(string surveyId)
        {
            var result = new StringBuilder(ConnectionClient.NfieldServerUri.AbsoluteUri);
            result.AppendFormat(CultureInfo.InvariantCulture, @"Surveys/{0}/Data/", surveyId);

            return result.ToString();
        }