diff --git a/src/Forms/Prism.Forms/Services/Dialogs/DialogResult.cs b/src/Forms/Prism.Forms/Services/Dialogs/DialogResult.cs
index 4c76431a30..59adce2226 100644
--- a/src/Forms/Prism.Forms/Services/Dialogs/DialogResult.cs
+++ b/src/Forms/Prism.Forms/Services/Dialogs/DialogResult.cs
@@ -5,9 +5,15 @@
namespace Prism.Services.Dialogs
{
+ ///
+ /// Provides information about a dialog that has been closed.
+ ///
internal class DialogResult : IDialogResult
{
+ ///
public Exception Exception { get; set; }
+
+ ///
public IDialogParameters Parameters { get; set; }
}
}
diff --git a/src/Forms/Prism.Forms/Services/Dialogs/IDialogResult.cs b/src/Forms/Prism.Forms/Services/Dialogs/IDialogResult.cs
index a36fdf9738..ca86f6de75 100644
--- a/src/Forms/Prism.Forms/Services/Dialogs/IDialogResult.cs
+++ b/src/Forms/Prism.Forms/Services/Dialogs/IDialogResult.cs
@@ -2,9 +2,19 @@
namespace Prism.Services.Dialogs
{
+ ///
+ /// Represents a class that returns information about a dialog that has been closed.
+ ///
public interface IDialogResult
{
+ ///
+ /// Gets the exception of the dialog.
+ ///
Exception Exception { get; }
+
+ ///
+ /// Gets the parameters from the dialog.
+ ///
IDialogParameters Parameters { get; }
}
}