Skip to content

Commit

Permalink
chore: adding xml docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dansiegel committed Jun 13, 2023
1 parent b2bf48e commit 92a72f8
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/Maui/Prism.Maui/Controls/PrismNavigationPage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,23 @@

namespace Prism.Controls;

/// <summary>
/// Provides a wrapper for the NavigationPage to better handle the OnBackButtonPressed event with Prism Navigation
/// </summary>
public class PrismNavigationPage : NavigationPage
{
/// <summary>
/// Creates a new instance of the <see cref="PrismNavigationPage+"/>

Check warning on line 11 in src/Maui/Prism.Maui/Controls/PrismNavigationPage.cs

View workflow job for this annotation

GitHub Actions / build-prism-maui / Build Prism.Maui

XML comment has syntactically incorrect cref attribute 'PrismNavigationPage+'
/// </summary>
public PrismNavigationPage()
{
BackButtonPressed += HandleBackButtonPressed;
}

/// <summary>
/// Creates a new instance of the <see cref="PrismNavigationPage"/> with a specified <see cref="Page"/> at the Root
/// </summary>
/// <param name="page"></param>
public PrismNavigationPage(Page page)
: base(page)
{
Expand All @@ -18,7 +28,6 @@ public PrismNavigationPage(Page page)
/// <inheritdoc/>
public event EventHandler BackButtonPressed;


/// <inheritdoc/>
protected override bool OnBackButtonPressed()
{
Expand Down

0 comments on commit 92a72f8

Please sign in to comment.