I'm working on a .NET MAUI application and have implemented a custom pipeline behavior using MediatR, but I'm facing issues with it not being called as expected. I've outlined my implementation below and would appreciate any insights, advices, or suggestions to resolve this issue.
Pipeline Behavior:
public class ExceptionsPipelineBehavior<TRequest, TResponse>(
IDateTimeProvider dateTimeProvider,
INetwork network,
ILogger logger)
: IPipelineBehavior<TRequest, TResponse>
where TRequest : IBaseRequest<TResponse>
where TResponse : Result
{
public async Task<TResponse> Handle(TRequest request, RequestHandlerDelegate<TResponse> next, CancellationToken cancellationToken)
{
var requestTypeName = typeof(TRequest).Name.Replace("Request", "");
dynamic response = typeof(TResponse);
if (!network.Connected())
{
return response.Failure(DomainErrors.NotNetwork(requestTypeName));
}
logger.LogTrace("Starts Handling {@RequestType}, {@DateTime}", requestTypeName, dateTimeProvider.UtcNow);
try
{
response = await next();
logger.LogTrace("Ends Handling {@RequestType}, {@DateTime}", requestTypeName, dateTimeProvider.UtcNow);
return response;
}
catch (HttpRequestException ex)
{
logger.LogError(ex, "Error Handling {@RequestType}, {@DateTime}", requestTypeName, dateTimeProvider.UtcNow);
var error = ex.StatusCode switch
{
HttpStatusCode.BadRequest => Error.Failure(),
HttpStatusCode.Unauthorized => Error.Unauthorized(),
HttpStatusCode.Forbidden => Error.Failure(),
HttpStatusCode.NotFound => Error.NotFound(),
HttpStatusCode.Conflict => Error.Conflict(),
HttpStatusCode.InternalServerError => DomainErrors.ServiceIsUnavailable,
_ => DomainErrors.ServiceIsUnavailable,
};
return response.Failure(error);
}
}
}
Setup:
services
.AddMediatR(config =>
{
config.RegisterServicesFromAssemblies(AssemblyReference.Assemblies);
config.NotificationPublisher = new TaskWhenAllPublisher();
});
services
.AddTransient(
typeof(IPipelineBehavior<,>),
typeof(ExceptionsPipelineBehavior<,>));
Is there anything in my implementation of ExceptionsPipelineBehavior<TRequest, TResponse> that could be causing it not to be called as expected? Are there any known issues with custom pipeline behaviors in .NET MAUI with MediatR that I should be aware of?
I have already used the OpenBehavior method in MediatR configuration.
Also, I have already checked my network service, logging setup, and made sure that the behavior is registered correctly, but the behavior still isn't triggered. Any advice or suggestions would be greatly appreciated!
Best,
According to the docs, you need to register the behavior in the AddMediatR() call:
Your call to AddTransient is unnecessary.
EDIT: I wrote this example to show you how you can approach this problem. I think this is what you are trying to do. This has a slight drawback of checking for types at runtime for every request so it might affect performance slightly.
I also tried coming up with a compile-time solution but the IoC container would not resolve the types the way I wanted. Please check out this article to have a better understanding.