Microsoft.Extensions.Options.Contextual 9.0.0-preview.3.24209.3

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This is a prerelease version of Microsoft.Extensions.Options.Contextual.
dotnet add package Microsoft.Extensions.Options.Contextual --version 9.0.0-preview.3.24209.3
NuGet\Install-Package Microsoft.Extensions.Options.Contextual -Version 9.0.0-preview.3.24209.3
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="Microsoft.Extensions.Options.Contextual" Version="9.0.0-preview.3.24209.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.Extensions.Options.Contextual --version 9.0.0-preview.3.24209.3
#r "nuget: Microsoft.Extensions.Options.Contextual, 9.0.0-preview.3.24209.3"
#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 Microsoft.Extensions.Options.Contextual as a Cake Addin
#addin nuget:?package=Microsoft.Extensions.Options.Contextual&version=9.0.0-preview.3.24209.3&prerelease

// Install Microsoft.Extensions.Options.Contextual as a Cake Tool
#tool nuget:?package=Microsoft.Extensions.Options.Contextual&version=9.0.0-preview.3.24209.3&prerelease

Microsoft.Extensions.Options.Contextual

APIs for dynamically configuring options based on a given context.

Install the package

From the command-line:

dotnet add package Microsoft.Extensions.Options.Contextual

Or directly in the C# project file:

<ItemGroup>
  <PackageReference Include="Microsoft.Extensions.Options.Contextual" Version="[CURRENTVERSION]" />
</ItemGroup>

Usage Example

Start with an option type.

internal class WeatherForecastOptions
{
    public string TemperatureScale { get; set; } = "Celsius"; // Celsius or Fahrenheit
    public int ForecastDays { get; set; }
}

Define a context and a receiver that will be used as inputs to dynamically configure the options.

[OptionsContext]
internal partial class WeatherForecastContext // Note class must be partial
{
    public Guid UserId { get; set; }
    public string? CountryOrRegion { get; set; }
}

internal class CountryOrRegionContextReceiver : IOptionsContextReceiver
{
    public string? CountryOrRegion { get; private set; }

    public void Receive<T>(string key, T value)
    {
        if (key == nameof(CountryOrRegion))
        {
            CountryOrRegion = value?.ToString();
        }
    }
}

Create a service that consumes the options for a given context.

internal class WeatherForecast
{
    public DateTime Date { get; set; }
    public int Temperature { get; set; }
    public string TemperatureScale { get; set; } = string.Empty;
}

internal class WeatherForecastService
{
    private readonly IContextualOptions<WeatherForecastOptions> _contextualOptions;
    private readonly Random _rng = new(0);

    public WeatherForecastService(IContextualOptions<WeatherForecastOptions> contextualOptions)
    {
        _contextualOptions = contextualOptions;
    }

    public async Task<IEnumerable<WeatherForecast>> GetForecast(WeatherForecastContext context, CancellationToken cancellationToken)
    {
        WeatherForecastOptions options = await _contextualOptions.GetAsync(context, cancellationToken).ConfigureAwait(false);
        return Enumerable.Range(1, options.ForecastDays).Select(index => new WeatherForecast
        {
            Date = new DateTime(2000, 1, 1).AddDays(index),
            Temperature = _rng.Next(-20, 55),
            TemperatureScale = options.TemperatureScale,
        });
    }
}

The options can be configured with both global options (ForecastDays), and options that vary depending on the current context (TemperatureScale).

using var host = FakeHost.CreateBuilder()
    .ConfigureServices(services => services
        .Configure<WeatherForecastOptions>(options => options.ForecastDays = 7)
        .Configure<WeatherForecastOptions>(ConfigureTemperatureScaleBasedOnCountryOrRegion)
        .AddSingleton<WeatherForecastService>())
        .Build();

static void ConfigureTemperatureScaleBasedOnCountryOrRegion(IOptionsContext context, WeatherForecastOptions options)
{
    CountryOrRegionContextReceiver receiver = new();
    context.PopulateReceiver(receiver);
    if (receiver.CountryOrRegion == "US")
    {
        options.TemperatureScale = "Fahrenheit";
    }
}

And lastly, the service is called with some context.

var forecastService = host.Services.GetRequiredService<WeatherForecastService>();

var usForcast = await forecastService.GetForecast(new WeatherForecastContext { CountryOrRegion = "US" }, CancellationToken.None);
var caForcast = await forecastService.GetForecast(new WeatherForecastContext { CountryOrRegion = "CA" }, CancellationToken.None);

Feedback & Contributing

We welcome feedback and contributions in our GitHub repo.

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. 
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Microsoft.Extensions.Options.Contextual:

Package Downloads
Excos.Options

Excos.Options provides a feature/experiment management system on top of Options.Contextual

GitHub repositories

This package is not used by any popular GitHub repositories.