Mark van Renswoude
bcdb376256
Added test for publish overflows Removed support for Unity Container Changed third party package references to ranges Fixed XML documentation
23 lines
664 B
C#
23 lines
664 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Threading.Tasks;
|
|
using Tapeti.Config;
|
|
|
|
namespace Tapeti.DataAnnotations
|
|
{
|
|
/// <summary>
|
|
/// Validates published messages using System.ComponentModel.DataAnnotations
|
|
/// </summary>
|
|
internal class DataAnnotationsPublishMiddleware : IPublishMiddleware
|
|
{
|
|
/// <inheritdoc />
|
|
public ValueTask Handle(IPublishContext context, Func<ValueTask> next)
|
|
{
|
|
var validationContext = new ValidationContext(context.Message);
|
|
Validator.ValidateObject(context.Message, validationContext, true);
|
|
|
|
return next();
|
|
}
|
|
}
|
|
}
|