Shiny.Mediator.Blazor 4.10.0-beta-0010

Prefix Reserved
This is a prerelease version of Shiny.Mediator.Blazor.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Shiny.Mediator.Blazor --version 4.10.0-beta-0010
                    
NuGet\Install-Package Shiny.Mediator.Blazor -Version 4.10.0-beta-0010
                    
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="Shiny.Mediator.Blazor" Version="4.10.0-beta-0010" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Shiny.Mediator.Blazor" Version="4.10.0-beta-0010" />
                    
Directory.Packages.props
<PackageReference Include="Shiny.Mediator.Blazor" />
                    
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 Shiny.Mediator.Blazor --version 4.10.0-beta-0010
                    
#r "nuget: Shiny.Mediator.Blazor, 4.10.0-beta-0010"
                    
#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 Shiny.Mediator.Blazor@4.10.0-beta-0010
                    
#: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=Shiny.Mediator.Blazor&version=4.10.0-beta-0010&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Shiny.Mediator.Blazor&version=4.10.0-beta-0010&prerelease
                    
Install as a Cake Tool

Given

[MediatorHandler] public class MyRequestHandler : IRequestHandler<MyRequestHandler, MyResponse> { public Task<MyResponse> Handle(MyRequest request, CancellationToken cancellationToken) { // Handle the request and return a response var response = new MyResponse { Message = $"Hello, {request.Name}!" }; return Task.FromResult(response); } }

[MediatorMiddleware(1)] public class MyRequestMiddleware : IRequestMiddleware<MyResponse, MyResponse> { public string Name { get; set; } }

[MediatorMiddleware(2)] public class GenericRequestMiddleware<TRequest, TResponse> : IRequestMiddleware<MyResponse, TResponse> { public string Name { get; set; } }

GENERATES:

public class RequestExecutor : IRequestExecutor {

public Task<MyResponse> Execute(MyRequest request, CancellationToken cancellationToken = default)
{
    var middleware1 = new MyRequestMiddleware { Name = "MyRequestMiddleware" };
    var middleware2 = new GenericRequestMiddleware<MyRequest, MyResponse> { Name = "GenericRequestMiddleware" };
    var handler = new MyRequestHandler();
    
    Func<Task<MyResponse>> handlerFunc = () => handler.Handle(request, cancellationToken);
    
    Func<Task<MyResponse>> pipeline = () => middleware2.Invoke(() => middleware1.Invoke(handlerFunc), request, cancellationToken);
    
    return pipeline();
}

}

Shiny Mediator

<a href="https://www.nuget.org/packages/Shiny.Mediator" target="_blank"> <img src="https://img.shields.io/nuget/v/Shiny.Mediator?style=for-the-badge" /> </a>

Mediator is a behavioral design pattern that lets you reduce chaotic dependencies between objects. The pattern restricts direct communications between the objects and forces them to collaborate only via a mediator object.

Shiny Mediator <NugetBadge name="Shiny.Mediator" /> is a mediator pattern implementation, but for built with ALL .NET apps in mind. We provide a TON of middleware out-of-box to get you up and rolling with hardly any effort whatsoever. Checkout our Getting Started guide to see how easy it is. Imagine using 1 line of code to add offline, caching, or validation to your code!

This project is heavily inspired by MediatR with some lesser features that we feel were aimed more at server scenarios, while also adding some features we feel benefit apps

Samples & Documentation

Features

Works With

  • .NET MAUI - all platforms
  • MVVM Frameworks like Prism, ReactiveUI, & .NET MAUI Shell
  • Blazor - Work In Progress
  • Any other .NET platform - but you'll have to come up with your own "event collector" for the out-of-state stuff

What Does It Solve

Problem #1 - Service & Reference Hell

Does this look familiar to you? Look at all of those injections! As your app grows, the list will only grow. I feel sorry for the dude that gets to unit test this bad boy.

public class MyViewModel(
    IConnectivity conn,
    IDataService data,
    IAuthService auth,
    IDialogsService dialogs,
    ILogger<MyViewModel> logger
) {
    // ...
    try {
        if (conn.IsConnected) 
        {
            var myData = await data.GetDataRequest();
        }
        else 
        {
            dialogs.Show("No Connection");
            // cache?
        }
    }
    catch (Exception ex) {
        dialogs.Show(ex.Message);
        logger.LogError(ex);
    }
}

With a bit of our middleware and some events, you can get here:

public class MyViewModel(IMediator mediator) : IEventHandler<ConnectivityChangedEvent>, IEventHandler<AuthChangedEvent> {
    // ...
    var myData = await mediator.Request(new GetDataRequest());

    // logging, exception handling, offline caching can all be bundle into one nice clean call without the need for coupling
}

public class GetDataRequestHandler : IRequestHandler<GetDataRequest, MyData> {

    [OfflineAvailable] // <= boom done
    public async Task<MyData> Handle(GetDataRequest request, CancellationToken cancellationToken) {
        // ...
    }
}

Problem #2 - Messages EVERYWHERE (+ Leaks)

Do you use the MessagingCenter in Xamarin.Forms? It's a great tool, but it can lead to some memory leaks if you're not careful. It also doesn't have a pipeline, so any errors in any of the responders will crash the entire chain. It doesn't have a request/response style setup (not that it was meant for it), but this means you still require other services.

public class MyViewModel
{
    public MyViewModel()
    {
        MessagingCenter.Subscribe<SomeEvent1>(this, @event => {
            // do something
        });
        MessagingCenter.Subscribe<SomeEvent2>(this, @event => {
            // do something
        });

        MessagingCenter.Send(new SomeEvent1());
        MessagingCenter.Send(new SomeEvent2());

        // and don't forget to unsubscribe
        MessagingCenter.Unsubscribe<SomeEvent1>(this);
        MessagingCenter.Unsubscribe<SomeEvent2>(this);
    }
}

Let's take a look at our mediator in action for this scenarios

public class MyViewModel : IEventHandler<SomeEvent1>, IEventHandler<SomeEvent2>
{
    public MyViewModel(IMediator mediator)
    {
        // no need to unsubscribe
        mediator.Publish(new SomeEvent1());
        mediator.Publish(new SomeEvent2());
    }
}

Problem #3 - Strongly Typed Navigation with Strongly Typed Arguments

Our amazing friends over in Prism offer the "best in class" MVVM framework. We'll them upsell you beyond that, but one of their amazing features is 'Modules'. Modules help break up your navigation registration, services, etc.

What they don't solve is providing a strongly typed nature for this stuff (not their job though). We think we can help addon to their beautiful solution.

A normal call to a navigation service might look like this:

_navigationService.NavigateAsync("MyPage", new NavigationParameters { { "MyArg", "MyValue" } });

This is great. It works, but I don't know the type OR argument requirements of "MyPage" without going to look it up. In a small project with a small dev team, this is fine. In a large project with a large dev team, this can be difficult.

Through our Shiny.Framework library we offer a GlobalNavigationService that can be used to navigate to any page in your app from anywhere, however, for the nature of this example, we'll pass our navigation service FROM our viewmodel through the mediator request to ensure proper scope.

public record MyPageNavigatonRequest(INavigationService navigator, string MyArg) : IRequest;
public class MyPageNavigationHandler : IRequestHandler<MyPageNavigatonRequest>
{
    public async Task Handle(MyPageNavigatonRequest request, CancellationToken cancellationToken)
    {
        await request.navigator.NavigateAsync("MyPage", new NavigationParameters { { "MyArg", request.MyArg } });
    }
}

Now, in your viewmodel, you can do this:

public class MyViewModel
{
    public MyViewModel(IMediator mediator)
    {
        mediator.Request(new MyPageNavigationCommand(_navigationService, "MyValue"));
    }
}

Strongly typed. No page required page knowledge from the module upfront. The other dev team of the module can define HOW things work.

Product Compatible and additional computed target framework versions.
.NET 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 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
6.0.0-beta-0004 196 11/20/2025
6.0.0-beta-0003 208 11/19/2025
6.0.0-beta-0002 210 11/18/2025
6.0.0-beta-0001 212 11/18/2025
5.1.1 141 10/31/2025
5.1.0 171 10/27/2025
5.1.0-beta-0002 170 10/27/2025
5.1.0-beta-0001 125 10/25/2025
5.0.0 102 10/25/2025
5.0.0-beta-0012 159 10/23/2025
5.0.0-beta-0011 159 10/22/2025
5.0.0-beta-0010 161 10/22/2025
5.0.0-beta-0009 167 10/21/2025
5.0.0-beta-0008 162 10/19/2025
5.0.0-beta-0007 99 10/18/2025
5.0.0-beta-0006 107 10/17/2025
5.0.0-beta-0005 148 10/17/2025
5.0.0-beta-0004 153 10/10/2025
5.0.0-beta-0003 160 10/9/2025
5.0.0-beta-0002 163 10/8/2025
5.0.0-beta-0001 163 10/7/2025
4.10.0-beta-0020 225 9/19/2025
4.10.0-beta-0019 295 9/18/2025
4.10.0-beta-0018 286 9/18/2025
4.10.0-beta-0017 299 9/18/2025
4.10.0-beta-0016 298 9/18/2025
4.10.0-beta-0015 302 9/18/2025
4.10.0-beta-0014 296 9/18/2025
4.10.0-beta-0013 283 9/18/2025
4.10.0-beta-0012 284 9/18/2025
4.10.0-beta-0011 301 9/16/2025
4.10.0-beta-0010 298 9/16/2025
4.10.0-beta-0009 165 9/10/2025
4.10.0-beta-0008 153 9/10/2025
4.10.0-beta-0007 168 9/9/2025
4.10.0-beta-0006 214 8/28/2025
4.10.0-beta-0005 126 8/22/2025
4.10.0-beta-0004 158 8/22/2025
4.10.0-beta-0003 156 8/18/2025
4.10.0-beta-0002 162 8/18/2025
4.10.0-beta-0001 125 7/29/2025
4.9.1 141 7/29/2025
4.9.0 245 7/26/2025
4.9.0-beta-0005 562 7/22/2025
4.9.0-beta-0004 562 7/22/2025
4.9.0-beta-0003 556 7/22/2025
4.9.0-beta-0002 506 7/21/2025
4.9.0-beta-0001 423 7/21/2025
4.8.0 112 7/18/2025
4.8.0-beta-0004 103 7/18/2025
4.8.0-beta-0003 180 7/14/2025
4.8.0-beta-0002 169 7/14/2025
4.8.0-beta-0001 170 7/14/2025
4.7.0 186 6/25/2025
4.7.0-beta-0026 161 7/13/2025
4.7.0-beta-0025 166 7/10/2025
4.7.0-beta-0023 175 6/25/2025
4.7.0-beta-0022 166 6/24/2025
4.7.0-beta-0021 190 6/23/2025
4.7.0-beta-0020 180 6/19/2025
4.7.0-beta-0004 178 6/19/2025
4.6.6 198 6/19/2025
4.6.5 171 6/19/2025
4.6.4 170 6/19/2025
4.6.3 175 6/18/2025
4.6.2 163 6/18/2025
4.6.1 187 6/16/2025
4.6.1-beta-0005 190 6/18/2025
4.6.1-beta-0003 189 6/18/2025
4.6.1-beta-0001 180 6/16/2025
4.6.0 196 6/16/2025
4.5.0 329 6/10/2025
4.5.0-beta-0007 327 6/10/2025
4.5.0-beta-0006 316 6/9/2025
4.5.0-beta-0004 117 6/6/2025
4.5.0-beta-0002 179 6/6/2025
4.4.0 184 6/3/2025
4.4.0-beta-0025 190 6/3/2025
4.4.0-beta-0023 198 5/29/2025
4.4.0-beta-0021 189 5/29/2025
4.4.0-beta-0018 190 5/26/2025
4.4.0-beta-0017 195 5/26/2025
4.4.0-beta-0015 187 5/26/2025
4.4.0-beta-0014 175 5/26/2025
4.4.0-beta-0004 138 5/25/2025
4.2.2 131 5/24/2025
4.2.1 228 5/8/2025
4.2.0 158 4/25/2025
4.2.0-beta-0010 195 5/8/2025
4.2.0-beta-0009 172 5/8/2025
4.2.0-beta-0008 160 4/25/2025
4.2.0-beta-0001 240 4/16/2025
4.1.0 204 3/28/2025
4.1.0-beta-0001 190 3/28/2025
4.0.4 457 3/24/2025
4.0.4-beta-0001 427 3/24/2025
4.0.3 326 3/23/2025
4.0.3-beta-0007 311 3/23/2025
4.0.2 140 3/15/2025
4.0.1 251 3/5/2025
4.0.1-beta-0010 205 3/19/2025
4.0.1-beta-0009 117 3/15/2025
4.0.1-beta-0001 246 3/5/2025
4.0.0 248 3/4/2025
4.0.0-beta-0021 253 3/4/2025
4.0.0-beta-0017 250 3/4/2025
4.0.0-beta-0016 224 3/4/2025
4.0.0-beta-0010 144 3/2/2025
4.0.0-beta-0009 140 3/2/2025
4.0.0-beta-0002 126 3/1/2025
3.3.1 168 2/20/2025
3.3.0 157 2/20/2025
3.3.0-beta-0028 138 2/20/2025
3.3.0-beta-0025 125 2/19/2025
3.3.0-beta-0024 126 2/19/2025
3.3.0-beta-0004 151 2/8/2025
3.2.0 149 1/29/2025
3.2.0-beta-0027 130 1/29/2025
3.2.0-beta-0023 117 1/29/2025
3.2.0-beta-0020 135 1/29/2025
3.1.3 147 1/29/2025
3.1.2 155 1/28/2025
3.1.1 156 1/25/2025
3.1.0 144 1/25/2025
3.1.0-beta-0013 116 1/25/2025
3.1.0-beta-0006 132 1/25/2025
3.1.0-beta-0004 137 1/25/2025
3.0.0 160 1/24/2025
3.0.0-beta-0055 140 1/24/2025
3.0.0-beta-0046 126 1/23/2025
3.0.0-beta-0045 113 1/23/2025
3.0.0-beta-0043 148 1/23/2025
3.0.0-beta-0038 122 1/21/2025
3.0.0-beta-0037 133 1/21/2025
3.0.0-beta-0029 144 1/21/2025
3.0.0-beta-0028 144 1/21/2025
3.0.0-beta-0018 109 1/19/2025
3.0.0-beta-0016 119 1/14/2025
3.0.0-beta-0012 148 1/12/2025
3.0.0-beta-0008 124 1/2/2025
3.0.0-beta-0007 139 12/28/2024
3.0.0-beta-0004 158 12/22/2024
2.2.0-beta-0001 129 10/28/2024
2.1.1 177 10/28/2024
2.1.0 158 10/19/2024
2.1.0-beta-0016 126 10/19/2024
2.1.0-beta-0015 118 10/19/2024
2.1.0-beta-0014 133 10/19/2024
2.1.0-beta-0013 145 10/19/2024
2.1.0-beta-0011 181 10/18/2024
2.1.0-beta-0010 172 10/18/2024
2.1.0-beta-0004 137 10/8/2024
2.1.0-beta-0002 122 10/6/2024
2.0.2 169 10/6/2024
2.0.1 164 10/6/2024
2.0.0 178 10/4/2024
2.0.0-beta-0060 121 10/6/2024
2.0.0-beta-0059 138 10/6/2024
2.0.0-beta-0056 136 10/4/2024
2.0.0-beta-0054 157 10/3/2024
2.0.0-beta-0053 150 10/2/2024
2.0.0-beta-0052 153 10/2/2024
2.0.0-beta-0050 129 10/2/2024
2.0.0-beta-0049 141 10/2/2024
2.0.0-beta-0046 144 10/1/2024
2.0.0-beta-0044 140 9/30/2024
2.0.0-beta-0026 131 9/24/2024
2.0.0-beta-0023 122 9/23/2024
2.0.0-beta-0022 113 9/23/2024
2.0.0-beta-0020 136 9/22/2024
2.0.0-beta-0004 130 9/20/2024
2.0.0-beta-0003 128 9/20/2024
1.9.0-beta-0003 140 9/16/2024
1.9.0-beta-0001 141 9/15/2024
1.9.0-beta 122 9/15/2024
1.8.1 165 9/14/2024
1.8.1-beta-0006 127 9/14/2024
1.8.1-beta-0005 146 9/14/2024
1.8.1-beta-0004 125 9/14/2024
1.8.1-beta-0003 126 9/14/2024
1.8.1-beta-0002 172 9/14/2024
1.8.1-beta-0001 112 9/14/2024
1.8.0 203 9/12/2024
1.8.0-beta-0064 133 9/12/2024
1.8.0-beta-0063 149 9/12/2024
1.8.0-beta-0059 119 9/8/2024
1.8.0-beta-0058 147 9/8/2024
1.8.0-beta-0057 162 9/8/2024
1.8.0-beta-0054 127 9/7/2024
1.8.0-beta-0053 152 9/6/2024
1.8.0-beta-0052 120 9/6/2024
1.8.0-beta-0051 159 9/6/2024
1.8.0-beta-0044 165 9/5/2024
1.8.0-beta-0042 128 9/4/2024
1.8.0-beta-0041 139 9/4/2024
1.8.0-beta-0027 166 8/25/2024
1.8.0-beta-0022 162 8/23/2024
1.8.0-beta-0017 137 8/7/2024
1.8.0-beta-0012 128 7/28/2024
1.8.0-beta-0010 150 7/28/2024
1.7.5 182 8/23/2024
1.7.4 184 8/9/2024
1.7.3 177 8/7/2024
1.7.2 130 7/28/2024
1.7.1 143 7/28/2024
1.7.0 198 7/20/2024
1.7.0-beta-0005 153 7/20/2024
1.7.0-beta-0001 125 7/8/2024
1.6.0 178 7/8/2024
1.6.0-beta-0004 159 7/7/2024
1.5.0 154 7/6/2024
1.5.0-beta-0010 172 7/6/2024
1.5.0-beta-0006 140 7/4/2024
1.4.5 170 7/4/2024
1.4.2 178 6/30/2024
1.4.1 177 6/30/2024
1.4.0 154 6/30/2024
1.4.0-beta-0010 165 6/30/2024
1.3.1 151 6/29/2024
1.3.0 175 6/29/2024
1.3.0-beta-0014 147 6/29/2024
1.3.0-beta-0007 151 6/26/2024
1.2.0 186 6/20/2024
1.2.0-beta-0001 140 6/20/2024
1.1.0 174 6/17/2024
1.1.0-beta-0019 155 6/20/2024
1.1.0-beta-0016 140 6/19/2024
1.1.0-beta-0014 170 6/17/2024
1.1.0-beta-0013 156 6/17/2024
1.0.0 187 6/15/2024
1.0.0-alpha-0054 158 6/15/2024
1.0.0-alpha-0053 142 6/12/2024
1.0.0-alpha-0051 141 6/12/2024
1.0.0-alpha-0048 148 6/10/2024
1.0.0-alpha-0047 151 6/10/2024
1.0.0-alpha-0043 169 6/9/2024
1.0.0-alpha-0042 191 6/7/2024
1.0.0-alpha-0040 172 6/6/2024
1.0.0-alpha-0038 170 6/6/2024
1.0.0-alpha-0036 149 6/5/2024
1.0.0-alpha-0034 180 6/4/2024
1.0.0-alpha-0031 132 6/4/2024
1.0.0-alpha-0025 165 6/3/2024
1.0.0-alpha-0023 158 6/2/2024
1.0.0-alpha-0022 164 6/1/2024
1.0.0-alpha-0019 170 6/1/2024
1.0.0-alpha-0018 166 6/1/2024
1.0.0-alpha-0014 174 6/1/2024
1.0.0-alpha-0013 155 6/1/2024
1.0.0-alpha-0012 165 5/31/2024
1.0.0-alpha-0011 148 5/31/2024
1.0.0-alpha-0010 150 5/31/2024