Nfield.Services.Implementation.NfieldSurveyPublishService.PublishSurveyApi C# (CSharp) Method

PublishSurveyApi() private method

private PublishSurveyApi ( string surveyId ) : Uri
surveyId string
return System.Uri
        private Uri PublishSurveyApi(string surveyId)
        {
            var uriText = new StringBuilder(ConnectionClient.NfieldServerUri.AbsoluteUri);
            uriText.AppendFormat("Surveys/{0}/Publish", surveyId);
            return new Uri(uriText.ToString());
        }