MedioPkg 1.1.0

dotnet add package MedioPkg --version 1.1.0
                    
NuGet\Install-Package MedioPkg -Version 1.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MedioPkg" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MedioPkg" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="MedioPkg" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MedioPkg --version 1.1.0
                    
#r "nuget: MedioPkg, 1.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package MedioPkg@1.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MedioPkg&version=1.1.0
                    
Install as a Cake Addin
#tool nuget:?package=MedioPkg&version=1.1.0
                    
Install as a Cake Tool

Medio

Lightweight mediator for .NET with built-in pipeline behavior support, enabling clean separation of concerns via request/response and notification patterns.


Installation

dotnet add package MedioPkg

Quick Start

// Program.cs
builder.Services.AddMedio(typeof(Program).Assembly);
builder.Services.AddMedioValidation(typeof(Program).Assembly);

var app = builder.Build();
app.UseMedio(); // handles ValidationException → 400

Registering Assemblies

AddMedio supports three ways to specify which assemblies to scan:

// Scan all loaded assemblies
builder.Services.AddMedio();

// Scan specific assemblies
builder.Services.AddMedio(typeof(Program).Assembly, typeof(OtherClass).Assembly);

// Filter by namespace prefix (most performant)
builder.Services.AddMedio("MyApp.Features", "MyApp.Domain");

Request / Response

Define a request and its handler:

// Request
public record CreateOrder(string Product, int Quantity) : IRequest<Guid>;

// Handler
public class CreateOrderHandler : IRequestHandler<CreateOrder, Guid>
{
    public Task<Guid> Handle(CreateOrder request, CancellationToken cancellationToken)
    {
        var id = Guid.NewGuid();
        // business logic...
        return Task.FromResult(id);
    }
}

// Usage
app.MapPost("/orders", async (IMediator mediator, CreateOrder command) =>
{
    var id = await mediator.Send(command);
    return Results.Ok(id);
});

Notifications (Pub/Sub)

Broadcast an event to multiple handlers:

// Notification
public record OrderCreated(Guid OrderId) : INotification;

// Handler 1
public class SendEmailOnOrderCreated : INotificationHandler<OrderCreated>
{
    public Task Handle(OrderCreated notification, CancellationToken cancellationToken)
    {
        // send email...
        return Task.CompletedTask;
    }
}

// Handler 2
public class LogOrderCreated : INotificationHandler<OrderCreated>
{
    public Task Handle(OrderCreated notification, CancellationToken cancellationToken)
    {
        // log event...
        return Task.CompletedTask;
    }
}

// Publish — all handlers are invoked sequentially
await mediator.Publish(new OrderCreated(id));

Pipeline Behaviors

Behaviors wrap request handling in a Russian-doll model, enabling cross-cutting concerns without touching handlers.

→ LoggingBehavior
    → ValidationBehavior
        → YourHandler
        ← returns result
    ← ValidationBehavior
← LoggingBehavior

Built-in: LoggingBehavior

Logs request name, payload, elapsed time, and errors automatically.

// Register for a specific request
builder.Services.AddTransient<
    IPipelineBehavior<CreateOrder, Guid>,
    LoggingBehavior<CreateOrder, Guid>>();

Console output:

[Medio] Handling CreateOrder { Product = "Book", Quantity = 2 }
[Medio] Handled CreateOrder in 12ms

On error:

[Medio] Error handling CreateOrder after 3ms

Built-in: ValidationBehavior

Automatically validates requests before they reach the handler. Throws ValidationException if validation fails — the handler is never called.

1. Install FluentValidation
dotnet add package FluentValidation
2. Create a validator
public class CreateOrderValidator : AbstractValidator<CreateOrder>
{
    public CreateOrderValidator()
    {
        RuleFor(x => x.Product)
            .NotEmpty().WithMessage("Product is required");

        RuleFor(x => x.Quantity)
            .GreaterThan(0).WithMessage("Quantity must be greater than 0");
    }
}
3. Register with AddMedioValidation
// Scans the assembly, registers all validators and ValidationBehavior automatically
builder.Services.AddMedioValidation(typeof(Program).Assembly);
4. Handle validation errors

Add UseMedio() to return structured 400 responses instead of 500:

app.UseMedio();

Response when validation fails:

{
  "type": "https://tools.ietf.org/html/rfc7231#section-6.5.1",
  "title": "One or more validation errors occurred.",
  "status": 400,
  "errors": {
    "Product": ["Product is required"],
    "Quantity": ["Quantity must be greater than 0"]
  }
}

Custom Behaviors

Create your own behavior by implementing IPipelineBehavior<TRequest, TResponse>:

public class CacheBehavior<TRequest, TResponse> : IPipelineBehavior<TRequest, TResponse>
    where TRequest : IRequest<TResponse>
{
    public async Task<TResponse> Handle(
        TRequest request,
        CancellationToken cancellationToken,
        RequestHandlerDelegate<TResponse> next)
    {
        // logic before handler
        var response = await next();
        // logic after handler
        return response;
    }
}

// Register
builder.Services.AddTransient<
    IPipelineBehavior<CreateOrder, Guid>,
    CacheBehavior<CreateOrder, Guid>>();

Registration order matters. The first registered behavior is the outermost wrapper in the pipeline.


Exception Middleware

UseMedio() registers MedioExceptionMiddleware, which:

  • Catches ValidationException → returns 400 with structured errors
  • Logs warnings for validation failures
  • Logs errors for unhandled exceptions and re-throws them
  • Follows the same error format as ASP.NET Core ValidationProblemDetails
var app = builder.Build();

app.UseSwagger();
app.UseSwaggerUI();
app.UseMedio(); // ← add before mapping endpoints

app.MapPost("/orders", ...);

Interfaces Reference

Interface Description
IRequest<TResponse> Marks a request that returns TResponse
IRequestHandler<TRequest, TResponse> Handles a specific request
INotification Marks a notification (no return value)
INotificationHandler<TNotification> Handles a specific notification
IPipelineBehavior<TRequest, TResponse> Wraps request handling (middleware)
RequestHandlerDelegate<TResponse> Delegate representing the next step in the pipeline
IMediator Dispatches requests and publishes notifications

Full Program.cs Example

using Medio.Interfaces;
using Medio.Extensions;
using Medio.Implementation;
using FluentValidation;

var builder = WebApplication.CreateBuilder(args);

builder.Services.AddMedio(typeof(Program).Assembly);
builder.Services.AddMedioValidation(typeof(Program).Assembly);

builder.Services.AddTransient<
    IPipelineBehavior<CreateOrder, Guid>,
    LoggingBehavior<CreateOrder, Guid>>();

builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();

var app = builder.Build();

app.UseSwagger();
app.UseSwaggerUI();
app.UseMedio();

app.MapPost("/orders", async (IMediator mediator, CreateOrder command) =>
{
    var id = await mediator.Send(command);
    return Results.Created($"/orders/{id}", new { id });
})
.WithName("CreateOrder")
.WithTags("Orders")
.WithOpenApi();

app.Run();

License

MIT © Wellington Neto

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.0 123 2/22/2026
1.0.1 116 2/22/2026
1.0.0 110 2/22/2026