using System.Web; namespace Kreta.Naplo.Infrastructure { /// /// Static helper methods /// public static class Helpers { /// /// Http helpers /// public static class Http { /// /// Combines the URL. /// /// The base URL. /// The relative URL. /// public static string CombineUrl(string baseUrl, string relativeUrl) { return $"{VirtualPathUtility.AppendTrailingSlash(baseUrl)}{relativeUrl}"; } } } }