PSC.Blazor.Components.GoogleTagManager 6.0.3

dotnet add package PSC.Blazor.Components.GoogleTagManager --version 6.0.3
NuGet\Install-Package PSC.Blazor.Components.GoogleTagManager -Version 6.0.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="PSC.Blazor.Components.GoogleTagManager" Version="6.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PSC.Blazor.Components.GoogleTagManager --version 6.0.3
#r "nuget: PSC.Blazor.Components.GoogleTagManager, 6.0.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 PSC.Blazor.Components.GoogleTagManager as a Cake Addin
#addin nuget:?package=PSC.Blazor.Components.GoogleTagManager&version=6.0.3

// Install PSC.Blazor.Components.GoogleTagManager as a Cake Tool
#tool nuget:?package=PSC.Blazor.Components.GoogleTagManager&version=6.0.3

Google Tag Manager for Blazor

Adds Google Tag Manager to the application and manages communication with GTM JavaScript (data layer).

Basic usage

Install GTM support through application start up, for example in the Program.cs:

builder.Services.AddGoogleTagManager(options =>
{
    options.GtmId = "your-code";
});

or

builder.Services.AddGoogleTagManager(options =>
{
    builder.Configuration.Bind("GoogleTagManager", options);
});

API

Methods

Method Returns Description
InitializeAsync() Task Initializes the GTM support. Called automatically within first Push call (included in GoogleTagManagerPageViewTracker calls). To be used explicitly only in those rare cases when you want to initialize GTM without pushing any data.
PushAsync(object data) Task Push generic data to GTM data-layer (using regular JSON-serialization).
PushEventAsync(string eventName, object eventData) Task Push event to GTM data-layer.
PushPageViewAsync(object additionalData) Task Push page-view to GTM data-layer. Consider using GoogleTagManagerPageViewTracker instead of manual handling.

GoogleTagManagerPageViewTracker

Basic usage Install GTM support through application start up (see above) and add GoogleTagManagerPageViewTracker to App.razor or MainLayout.razor.

<GoogleTagManagerPageViewTracker />
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
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
6.0.3 217 11/13/2023
6.0.2 140 4/24/2023
6.0.1 131 4/24/2023