Ozcorps.Mediator 1.0.0

dotnet add package Ozcorps.Mediator --version 1.0.0
                    
NuGet\Install-Package Ozcorps.Mediator -Version 1.0.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="Ozcorps.Mediator" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ozcorps.Mediator" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Ozcorps.Mediator" />
                    
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 Ozcorps.Mediator --version 1.0.0
                    
#r "nuget: Ozcorps.Mediator, 1.0.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 Ozcorps.Mediator@1.0.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=Ozcorps.Mediator&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Ozcorps.Mediator&version=1.0.0
                    
Install as a Cake Tool

Ozcorps.Mediator

A lightweight mediator implementation for .NET. Supports CQRS pattern with pipeline behaviors and FluentValidation integration.

Features

  • ✅ Request/Response pattern (IRequest, IRequestHandler)
  • ✅ Notification pattern (INotification, INotificationHandler)
  • ✅ Pipeline behaviors (IPipelineBehavior)
  • ✅ Built-in ValidationBehavior with FluentValidation
  • ✅ Assembly scanning for automatic handler registration
  • ✅ Fluent configuration API
  • ✅ Multi-target: net8.0, net9.0, net10.0
  • ✅ MIT Licensed - Free forever

Installation

dotnet add package Ozcorps.Mediator

Quick Start

1. Define a Request and Handler

using Ozcorps.Mediator;

// Request
public record GetProductQuery(Guid Id) : IRequest<ProductDto>;

// Handler
public class GetProductHandler : IRequestHandler<GetProductQuery, ProductDto>
{
    public async Task<ProductDto> Handle(GetProductQuery request, CancellationToken cancellationToken)
    {
        // Your logic here
        return new ProductDto(...);
    }
}

2. Register Services

builder.Services.AddOzMediator(cfg =>
{
    cfg.RegisterServicesFromAssembly(typeof(Program).Assembly);
});

3. Use the Mediator

app.MapGet("/products/{id}", async (Guid id, IMediator mediator) =>
{
    var result = await mediator.Send(new GetProductQuery(id));
    return Results.Ok(result);
});

Pipeline Behaviors

Add cross-cutting concerns like validation, logging, or transactions:

public class ValidationBehavior<TRequest, TResponse> : IPipelineBehavior<TRequest, TResponse>
    where TRequest : notnull
{
    public async Task<TResponse> Handle(
        TRequest request,
        RequestHandlerDelegate<TResponse> next,
        CancellationToken cancellationToken)
    {
        // Before handler
        ValidateRequest(request);
        
        // Call next behavior or handler
        var response = await next();
        
        // After handler
        return response;
    }
}

// Register
builder.Services.AddOzMediator(cfg =>
{
    cfg.RegisterServicesFromAssembly(typeof(Program).Assembly);
    cfg.AddOpenBehavior(typeof(ValidationBehavior<,>));
});

Notifications (Events)

// Event
public record ProductCreatedEvent(Guid ProductId) : INotification;

// Handlers (multiple allowed)
public class SendEmailHandler : INotificationHandler<ProductCreatedEvent>
{
    public async Task Handle(ProductCreatedEvent notification, CancellationToken cancellationToken)
    {
        // Send email
    }
}

public class UpdateCacheHandler : INotificationHandler<ProductCreatedEvent>
{
    public async Task Handle(ProductCreatedEvent notification, CancellationToken cancellationToken)
    {
        // Update cache
    }
}

// Publish (handlers execute sequentially in registration order)
await mediator.Publish(new ProductCreatedEvent(product.Id));

Configuration Options

using Microsoft.Extensions.DependencyInjection;

builder.Services.AddOzMediator(cfg =>
{
    // Register from assembly
    cfg.RegisterServicesFromAssembly(typeof(Program).Assembly);
    
    // Or from type
    cfg.RegisterServicesFromAssemblyContaining<MyHandler>();
    
    // Add pipeline behaviors (executed in order)
    cfg.AddOpenBehavior(typeof(LoggingBehavior<,>));
    cfg.AddOpenBehavior(typeof(ValidationBehavior<,>));
    
    // Set lifetimes
    cfg.WithHandlerLifetime(ServiceLifetime.Scoped);
    cfg.WithMediatorLifetime(ServiceLifetime.Scoped);
});

License

MIT License - Free to use in any project.

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 is compatible.  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 is compatible.  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.0.0 94 2/22/2026