Rollcall.Extensions.Microsoft.DependencyInjection 1.0.0

dotnet add package Rollcall.Extensions.Microsoft.DependencyInjection --version 1.0.0
NuGet\Install-Package Rollcall.Extensions.Microsoft.DependencyInjection -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="Rollcall.Extensions.Microsoft.DependencyInjection" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Rollcall.Extensions.Microsoft.DependencyInjection --version 1.0.0
#r "nuget: Rollcall.Extensions.Microsoft.DependencyInjection, 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.
// Install Rollcall.Extensions.Microsoft.DependencyInjection as a Cake Addin
#addin nuget:?package=Rollcall.Extensions.Microsoft.DependencyInjection&version=1.0.0

// Install Rollcall.Extensions.Microsoft.DependencyInjection as a Cake Tool
#tool nuget:?package=Rollcall.Extensions.Microsoft.DependencyInjection&version=1.0.0

Rollcall

Provides support for named service registration through the use of extension methods on the IServiceCollection interface, and retrieval of registered service by name using a factory.

Installing Rollcall

Rollcall is available on NuGet via:

Install-Package Rollcall.Extensions.Microsoft.DependencyInjection

Or via the .NET CLI:

dotnet add package Rollcall.Extensions.Microsoft.DependencyInjection

Or via NuGet Packager Manager in Visual Studio

How to use Rollcall

Configuring the dependency injection container

Use the AddNamedService to register the interface, with the various named implementations

host = Host.CreateDefaultBuilder()
    .ConfigureServices((context, services) => services
    .AddNamedService<IFileUploader>(builder => builder
        .AddTransient("aws", typeof(AWSUploader))
        .AddTransient("azure", typeof(AzureUploader))
        .AddTransient("ftp", typeof(FTPUploader))
    )
).Build();

Retrieving a named service

Using IRollcallProvider

Inject IRollcallProvider into the relevant class, and use the GetService method to retrieve the implementation by name.

public class RollcallHandler
{
    private readonly IRollcallProvider<IFileUploader> _provider;

    public RollcallHandler(IRollcallProvider<IFileUploader> provider)
    {
        _provider = provider;
    }

    public void Execute()
    {
        var providerName = "aws";

        var uploader = _provider.GetService(providerName);
        uploader.UploadFile();
    }
}

Using IServiceProvider

Use the provided extension method in IServiceProvider.

public class RollcallHandler
{
    private readonly IServiceProvider _serviceProvider;

    public RollcallHandler(IServiceProvider serviceProvider)
    {
        _serviceProvider = serviceProvider;
    }

    public void Execute()
    {
        var providerName = "azure";

        var uploader = _serviceProvider.GetService<IFileUploader>(providerName);
        uploader.UploadFile();
    }
}

Benchmarks

There are a variety of ways to handle multiple implementations of the same interface using the default .NET dependency injection implementation. Depending on the use case and the complexity of your implementations (e.g. the number of dependencies the implementations have) Rollcall might not be the best solution.

See this blog post with the various methods of handling multiple implementations, as well as some simple benchmarks.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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 2,132 11/6/2021
1.0.0-beta1 292 11/6/2021