From b91564b05faa353ec26169d101fac7338026f691 Mon Sep 17 00:00:00 2001
From: Luke Latham <1622880+guardrex@users.noreply.github.com>
Date: Thu, 23 May 2019 14:56:45 -0500
Subject: [PATCH] Blazor URI and navigation state helpers (#12419)
---
aspnetcore/blazor/routing.md | 36 +++++++++++++++++++++++++++++++++++-
1 file changed, 35 insertions(+), 1 deletion(-)
diff --git a/aspnetcore/blazor/routing.md b/aspnetcore/blazor/routing.md
index 3dd71873e0..db292d9725 100644
--- a/aspnetcore/blazor/routing.md
+++ b/aspnetcore/blazor/routing.md
@@ -5,7 +5,7 @@ description: Learn how to route requests in apps and about the NavLink component
monikerRange: '>= aspnetcore-3.0'
ms.author: riande
ms.custom: mvc
-ms.date: 05/13/2019
+ms.date: 05/14/2019
uid: blazor/routing
---
# Blazor routing
@@ -102,3 +102,37 @@ There are two `NavLinkMatch` options:
* `NavLinkMatch.Prefix` – Specifies that the NavLink should be active when it matches any prefix of the current URL.
In the preceding example, the Home NavLink (`href=""`) matches all URLs and always receives the `active` CSS class. The second NavLink only receives the `active` class when the user visits the Blazor Route component (`href="BlazorRoute"`).
+
+## URI and navigation state helpers
+
+Use `Microsoft.AspNetCore.Components.IUriHelper` to work with URIs and navigation in C# code. `IUriHelper` provides the event and methods shown in the following table.
+
+| Member | Description |
+| ------ | ----------- |
+| `GetAbsoluteUri` | Gets the current absolute URI. |
+| `GetBaseUri` | Gets the base URI (with a trailing slash) that can be prepended to relative URI paths to produce an absolute URI. Typically, `GetBaseUri` corresponds to the `href` attribute on the document's `