ServiceProviderContextualBinding 1.0.0

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

ServiceProviderContextualBinding - An extension for Microsoft.Extensions.DependencyInjection to create contextual bindings.

The default Microsoft dependency injection (DI) provider does not provide many of the advanced features of third party providers like Autofac and Ninject. One of the features that it does not provide is contextual binding. This package provides a simple form of contextual binding where the default implementation for one or more services can be replaced on a per-registration basis.

Example

In this example, the default implementation of the IService interface is the DefaultService class. When registering the Consumer class with the DI container, we specify that we want to resolve the IService interface using the ReplacementService class instead.

public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddSingleton<IService, DefaultService>();
        services.AddSingleton<ReplacementService>();
        services.WithReplacement<IService, ReplacementService>()
            .AddSingleton<Consumer>();
    }
}

public interface IService {}

public class DefaultService : IService {}

public class ReplacementService : IService {}

public class Consumer
{
    public Consumer(IService service)
    {
        // the service parameter is an instance of ReplacementService
    }
}

Registering Replacement Services

Services must be registered with the container in order to be used as replacements. If a replacement service is not registered, an exception will be thrown when the service that references the replacement is resolved.

You should not register replacements as the implemented service type. For example, avoid this:

services.AddSingleton<IService, DefaultService>();
services.AddSingleton<IService, ReplacementService>(); // avoid this

The simplest way to avoid this is to register the replacement class directly with the DI container as shown in the original example.

If you prefer not to register classes, only interfaces, you can use a marker interface that inherits from the service interface. Then specify that marker interface as the replacement. For example:

public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddSingleton<IServiceAlternate, ReplacementService>();
        services.WithReplacement<IService, IServiceAlternate>()
            .AddSingleton<Consumer>();
    }
}

public interface IService {}

// IServiceAlternate is the marker interface
public interface IServiceAlternate : IService {}

public class ReplacementService : IServiceAlternate {}

Implementing Replacement Services

Classes to be used as replacements must implement the service type to be replaced. You should avoid implementing multiple service types in the same class as it can cause unexpected results when the same consumer uses more than one of the implemented interfaces. For example, avoid this:

public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddSingleton<ReplacementService>();
        services.WithReplacement<ReplacementService>()
            .AddSingleton<Consumer>();
    }
}

public interface IService1 {}

public interface IService2 {}

public class ReplacementService : IService1, IService2 {}

public class Consumer
{
    public Consumer(IService1 service1, IService2 service2)
    {
        // only one of the arguments will refer to the replacement service
    }
}

Using Replacements

Each call to WithReplacement creates a new instance of a "replacement context". Calls to WithReplacement can be chained to create a context containing multiple replacements. For example:

services.WithReplacement<IService1, ReplacementService1>()
    .WithReplacement<IService2, ReplacementService2>()
    .AddSingleton<Consumer>(); // both IService1 and IService2 are replaced

Multiple services can be registered using the same replacement context. For example:

services.WithReplacement<IService, ReplacementService>()
    .AddSingleton<Consumer1>()  // receives ReplacementService
    .AddSingleton<Consumer2>(); // also receives ReplacementService

Since each call to WithReplacement creates a new context, calls to WithReplacement can be interleaved with calls to Add*, like so:

services.WithReplacement<IService1, ReplacementService1>()
    .AddSingleton<Consumer1>() // receives ReplacementService1
    .WithReplacement<IService2, ReplacementService2>()
    .AddSingleton<Consumer2>(); // receives ReplacementService1 and ReplacementService2

Service Registration Overloads

As much as possible, all Add* overloads (AddSingleton, AddTransient, and AddScoped) that are provided for IServiceCollection are provided by this package. The one major exception is: none of the overloads that take a factory delegate are provided.

Internally, this package uses ActivatorUtilities.CreateInstance to create service instances. If you need to use a factory delegate for your service registration, you can use ActivatorUtilities.CreateInstance directly instead of this package.

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.  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. 
.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 1,560 1/16/2022
0.1.0 472 1/14/2022