Soenneker.Blazor.ApplicationInsights 4.0.1880

Prefix Reserved
dotnet add package Soenneker.Blazor.ApplicationInsights --version 4.0.1880
                    
NuGet\Install-Package Soenneker.Blazor.ApplicationInsights -Version 4.0.1880
                    
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="Soenneker.Blazor.ApplicationInsights" Version="4.0.1880" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Blazor.ApplicationInsights" Version="4.0.1880" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Blazor.ApplicationInsights" />
                    
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 Soenneker.Blazor.ApplicationInsights --version 4.0.1880
                    
#r "nuget: Soenneker.Blazor.ApplicationInsights, 4.0.1880"
                    
#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.
#:package Soenneker.Blazor.ApplicationInsights@4.0.1880
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Blazor.ApplicationInsights&version=4.0.1880
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Blazor.ApplicationInsights&version=4.0.1880
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

Soenneker.Blazor.ApplicationInsights

Blazor JavaScript interop for loading Azure Application Insights in the browser and starting client-side telemetry.

Installation

dotnet add package Soenneker.Blazor.ApplicationInsights

Registration

using Soenneker.Blazor.ApplicationInsights.Registrars;

builder.Services.AddApplicationInsightsInteropAsScoped();

Initialize after the first render

JavaScript interop is required, so initialize from OnAfterRenderAsync rather than during component initialization:

@using Soenneker.Blazor.ApplicationInsights.Abstract
@inject IApplicationInsightsInterop ApplicationInsights
@inject IConfiguration Configuration

@code {
    protected override async Task OnAfterRenderAsync(bool firstRender)
    {
        if (!firstRender)
            return;

        await ApplicationInsights.Init(
            Configuration["ApplicationInsights:ConnectionString"]!);
    }
}

Call Init once per application session. The interop begins tracking page load, browser exceptions, and fetch dependencies.

The browser downloads the Application Insights SDK from https://js.monitor.azure.com. If the application uses a Content Security Policy, allow that script origin and the ingestion endpoint named by the connection string. Telemetry is sent from the user's browser, so review captured URLs, headers, and exception data before enabling it in production.

The scoped service owns its imported JavaScript module and releases it when the scope is disposed.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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. 
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
4.0.1880 46 9/9/2026
4.0.1879 45 9/8/2026
4.0.1878 60 9/8/2026
4.0.1877 87 9/7/2026
4.0.1876 87 9/7/2026
4.0.1875 81 9/7/2026
4.0.1874 100 9/5/2026
4.0.1873 100 9/4/2026
4.0.1872 95 9/4/2026
4.0.1871 94 9/4/2026
4.0.1870 120 8/31/2026
4.0.1869 84 8/31/2026
4.0.1868 104 8/31/2026
4.0.1867 92 8/31/2026
4.0.1866 99 8/30/2026
4.0.1865 82 8/30/2026
4.0.1864 94 8/30/2026
4.0.1863 84 8/29/2026
4.0.1861 90 8/29/2026
4.0.1860 86 8/29/2026
Loading failed

Update dependency Soenneker.Blazor.Utils.ModuleImport to 4.0.1883 (#2529)