File: WebAssemblyComponentsOptions.cs
Web Access
Project: src\aspnetcore\src\Components\WebAssembly\Server\src\Microsoft.AspNetCore.Components.WebAssembly.Server.csproj (Microsoft.AspNetCore.Components.WebAssembly.Server)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.AspNetCore.Components.WebAssembly.Server;
 
/// <summary>
/// Provides options for configuring interactive WebAssembly components.
/// </summary>
public class WebAssemblyComponentsOptions
{
    /// <summary>
    /// Gets or sets a value indicating whether the server's culture should be
    /// applied on the WebAssembly client. Defaults to <see langword="true"/>.
    /// </summary>
    public bool UseCultureFromServer { get; set; } = true;
}