nft-faucet/NftFaucetRadzen/Extensions/NavigationManagerExtensions.cs
2022-08-26 17:23:18 -05:00

21 lines
511 B
C#

using Microsoft.AspNetCore.Components;
namespace NftFaucetRadzen.Extensions;
public static class NavigationManagerExtensions
{
public static void NavigateToRelative(this NavigationManager uriHelper, string relativePath)
{
var newUri = uriHelper.BaseUri;
if (!newUri.EndsWith("/"))
newUri += "/";
if (relativePath.StartsWith("/"))
relativePath = relativePath.Substring(1);
newUri += relativePath;
uriHelper.NavigateTo(newUri);
}
}