BlazorServerUrlRequestCultureProvider 2.1.0
dotnet add package BlazorServerUrlRequestCultureProvider --version 2.1.0
NuGet\Install-Package BlazorServerUrlRequestCultureProvider -Version 2.1.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="BlazorServerUrlRequestCultureProvider" Version="2.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BlazorServerUrlRequestCultureProvider" Version="2.1.0" />
<PackageReference Include="BlazorServerUrlRequestCultureProvider" />
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 BlazorServerUrlRequestCultureProvider --version 2.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: BlazorServerUrlRequestCultureProvider, 2.1.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=BlazorServerUrlRequestCultureProvider&version=2.1.0
#tool nuget:?package=BlazorServerUrlRequestCultureProvider&version=2.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
BlazorServerUrlRequestCultureProvider
Localization scheme based on the URL path that works with Blazor Server (WebSockets) and Blazor Static SSR.
How it works
- Set the culture on the first HTTP request
- On blazor negotiate:
- Check the websocket request referrer; in our case
/{TWO_LETTER_ISO_LANGUAGE_NAME}/{SOME_URI}
- Change the culture base on the websocket request referrer
- Store the connection token and culture key/value pair
- Check the websocket request referrer; in our case
- On Blazor heartbeat:
- Using the connection token, retrieve the stored culture
- Change the culture based on the stored value
- When closing the websocket: Remove the stored connection token and culture key/value pair
How to use this package
Add the NuGet package to your Blazor Server project:
dotnet add package BlazorServerUrlRequestCultureProvider
Program.cs
In your Program.cs
file, add the following code:
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddRazorComponents()
.AddInteractiveServerComponents();
builder.Services.AddLocalization();
builder.Services.Configure<RequestLocalizationOptions>(options =>
{
// Remove the default providers
// 1. QueryStringRequestCultureProvider
// 2. CookieRequestCultureProvider
// 3. AcceptLanguageHeaderRequestCultureProvider
options.RequestCultureProviders.Clear();
IList<CultureInfo> supportedCultures = [new("en"), new("fr")];
options.DefaultRequestCulture = new RequestCulture("en");
options.SupportedCultures = supportedCultures;
options.SupportedUICultures = supportedCultures;
options.ApplyCurrentCultureToResponseHeaders = true;
// Configure globalization for static server-side rendering (static SSR)
options.RequestCultureProviders.Insert(0, new UrlRequestCultureProvider(options));
// Configure globalization for interactive server-side rendering (interactive SSR) using Blazor Server.
options.RequestCultureProviders.Insert(1, new BlazorNegotiateRequestCultureProvider(options));
});
// ...
var app = builder.Build();
// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
app.UseExceptionHandler("/Error", createScopeForErrors: true);
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRequestLocalization();
// app.UseRequestLocalizationInteractiveServerRenderMode(useCookie: false); // Server-side ConcurrentDictionary storage
app.UseRequestLocalizationInteractiveServerRenderMode(useCookie: true); // Client-side cookie storage
app.UseAntiforgery();
app.MapRazorComponents<App>()
.AddInteractiveServerRenderMode();
app.Run();
Index.razor
@page "/"
@page "/fr"
@page "/en"
@inject IStringLocalizer<App> Localizer
<h1>@Localizer["Hello, world!"]</h1>
@Localizer["Welcome to your new app."]
Counter.razor
@page "/en/counter"
@page "/fr/compteur"
@inject IStringLocalizer<App> Localizer
<h1>@Localizer["Counter"]</h1>
<p>@Localizer["Current count:"] @currentCount</p>
<button class="btn btn-primary" @onclick="IncrementCount">@Localizer["Click me"]</button>
@code {
private int currentCount = 0;
private void IncrementCount()
{
currentCount++;
}
}
Product | Versions 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- No dependencies.
-
net9.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.