Files
Umbraco-CMS/src/Umbraco.Core/Notifications/ModelBindingErrorNotification.cs
Mole 2bf86acf38 V9: Place notifications in the same namespace (#10231)
* Gather all notifications in Umbraco.Cms.Core.Notifications

* Rename notifications to match convention

* Move and rename missed notifications

* Move the three remaining public notification into Umbraco.Cms.Core.Notifications
2021-05-11 14:33:49 +02:00

38 lines
1.1 KiB
C#

using System;
using System.Text;
namespace Umbraco.Cms.Core.Notifications
{
/// <summary>
/// Contains event data for the <see cref="ModelBindingException"/> event.
/// </summary>
public class ModelBindingErrorNotification : INotification
{
/// <summary>
/// Initializes a new instance of the <see cref="ModelBindingErrorNotification"/> class.
/// </summary>
public ModelBindingErrorNotification(Type sourceType, Type modelType, StringBuilder message)
{
SourceType = sourceType;
ModelType = modelType;
Message = message;
}
/// <summary>
/// Gets the type of the source object.
/// </summary>
public Type SourceType { get; }
/// <summary>
/// Gets the type of the view model.
/// </summary>
public Type ModelType { get; }
/// <summary>
/// Gets the message string builder.
/// </summary>
/// <remarks>Handlers of the event can append text to the message.</remarks>
public StringBuilder Message { get; }
}
}