Eiliko.Blazor.hCaptcha 0.3.2

dotnet add package Eiliko.Blazor.hCaptcha --version 0.3.2
                    
NuGet\Install-Package Eiliko.Blazor.hCaptcha -Version 0.3.2
                    
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="Eiliko.Blazor.hCaptcha" Version="0.3.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Eiliko.Blazor.hCaptcha" Version="0.3.2" />
                    
Directory.Packages.props
<PackageReference Include="Eiliko.Blazor.hCaptcha" />
                    
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 Eiliko.Blazor.hCaptcha --version 0.3.2
                    
#r "nuget: Eiliko.Blazor.hCaptcha, 0.3.2"
                    
#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=Eiliko.Blazor.hCaptcha&version=0.3.2
                    
Install Eiliko.Blazor.hCaptcha as a Cake Addin
#tool nuget:?package=Eiliko.Blazor.hCaptcha&version=0.3.2
                    
Install Eiliko.Blazor.hCaptcha as a Cake Tool

Eiliko.Blazor.hCaptcha

NuGet

ASP.NET Core hCaptcha Component for Server-Side Blazor. Updated version of Texnomic.Blazor.hCaptcha

Installation

PM> Install-Package Eiliko.Blazor.hCaptcha

Setup

  1. Reference hCaptcha & NuGet Package JavaScript Files In Components/App.razor File:

    <head>
    
    <script src="https://hcaptcha.com/1/api.js&render=explicit" async type="text/javascript"></script>
    
    <script src="_content/Eiliko.Blazor.hCaptcha/scripts/hCaptcha.js" type="text/javascript"></script>
    
    </head>
    
  2. Add Package Configuration To Dependancy Injection Services in Program.cs File:

    using Eiliko.Blazor.hCaptcha.Extensions;
    
    
        builder.Services.AddHttpClient();
        builder.Services.AddHCaptcha(Options =>
        {
            Options.SiteKey = "10000000-ffff-ffff-ffff-000000000001";
            Options.Secret = "0x0000000000000000000000000000000000000000";
        });
    
  3. Create Callback Function & Backing Field To Capture Captcha Result In Example.razor File:

    private bool IsCaptchaValid { get; set; }
    
    protected void hCaptchaCallback(bool Result) => IsCaptchaValid = Result;
    
  4. Finally, Drop-In hCaptcha Component & Bind Callback Function In Example.razor File:

    <HCaptcha Callback="hCaptchaCallback" Theme="Theme.Dark"></HCaptcha>
    
Product Compatible and additional computed target framework versions.
.NET 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.

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
0.3.2 160 3/11/2025
0.3.1 135 12/10/2024
0.3.0 110 11/25/2024
0.2.2 119 11/2/2024
0.2.1 103 11/2/2024
0.2.0 104 11/2/2024