VirtoCommerce.Platform.Data.Asset.FileSystemBlobProvider.GetAbsoluteUrlFromPath C# (CSharp) Метод

GetAbsoluteUrlFromPath() приватный Метод

private GetAbsoluteUrlFromPath ( string path ) : string
path string
Результат string
        private string GetAbsoluteUrlFromPath(string path)
        {
            var retVal = _basePublicUrl + "/" + path.Replace(_storagePath, String.Empty).TrimStart('\\').Replace('\\', '/');
            return Uri.EscapeUriString(retVal);
         }