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" />
<PackageReference Include="Eiliko.Blazor.hCaptcha" />
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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
#tool nuget:?package=Eiliko.Blazor.hCaptcha&version=0.3.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Eiliko.Blazor.hCaptcha
ASP.NET Core hCaptcha Component for Server-Side Blazor. Updated version of Texnomic.Blazor.hCaptcha
Installation
PM> Install-Package Eiliko.Blazor.hCaptcha
Setup
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>
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"; });
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;
Finally, Drop-In hCaptcha Component & Bind Callback Function In
Example.razor
File:<HCaptcha Callback="hCaptchaCallback" Theme="Theme.Dark"></HCaptcha>
Product | Versions 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.
-
net9.0
- Microsoft.AspNetCore.Components (>= 9.0.3)
- Microsoft.AspNetCore.Components.Web (>= 9.0.3)
- Microsoft.Extensions.DependencyInjection (>= 9.0.3)
- Microsoft.Extensions.Http (>= 9.0.3)
- Microsoft.Extensions.Options (>= 9.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.