BlazorCaptcha.WebAssembly
2.0.2
dotnet add package BlazorCaptcha.WebAssembly --version 2.0.2
NuGet\Install-Package BlazorCaptcha.WebAssembly -Version 2.0.2
<PackageReference Include="BlazorCaptcha.WebAssembly" Version="2.0.2" />
<PackageVersion Include="BlazorCaptcha.WebAssembly" Version="2.0.2" />
<PackageReference Include="BlazorCaptcha.WebAssembly" />
paket add BlazorCaptcha.WebAssembly --version 2.0.2
#r "nuget: BlazorCaptcha.WebAssembly, 2.0.2"
#addin nuget:?package=BlazorCaptcha.WebAssembly&version=2.0.2
#tool nuget:?package=BlazorCaptcha.WebAssembly&version=2.0.2
Blazor-Captcha
Generates a captcha image for a Blazor Server or Webassembly application.
Live demo
Blazor webassembly : <a href="https://tossnet.github.io/Blazor-Captcha/" target="_blank">https://tossnet.github.io/Blazor-Captcha/</a>
Installation
To Install
Install-Package BlazorCaptcha
or
dotnet add package BlazorCaptcha
For client-side and server-side Blazor - add script section to _Host.cshtml (head section)
<link href="_content/BlazorCaptcha/captcha.css" rel="stylesheet" />
Usage
@page "/"
@using BlazorCaptcha
<h3>Hello, world!</h3>
<Captcha @bind-CaptchaWord="@Captcha" CharNumber="@CaptchaLetters" />
<p>@Captcha</p>
@code{
private string Captcha = "";
private int CaptchaLetters = 5;
protected override Task OnInitializedAsync()
{
Captcha = BlazorCaptcha.Tools.GetCaptchaWord(CaptchaLetters);
return base.OnInitializedAsync();
}
}
<a name="ReleaseNotes"></a>Release Notes
<details open="open"><summary>Version 2.0.0</summary>
- Due to the Skiasharp problem : https://github.com/mono/SkiaSharp/discussions/3185#discussioncomment-12410708,a special component for Blazor WebAssembly has been created. Currently only compatible with .NET 8 for the WASM part
- .NET 7 compatibility removed </details>
<details><summary>Version 1.7.1</summary>
<details><summary>Version 1.6.0</summary>
- issue #12 </details>
<details><summary>Version 1.5.0</summary>
- Add DotNet 8.0 framework target </details>
<details ><summary>Version 1.4.2</summary>
- Update nuget packages </details>
<details><summary>Version 1.4.1</summary>
- To avoid any confusion, remove 'x', 'V', 'v' chars </details>
<details><summary>Version 1.4.0</summary>
- issue #10 Characters did not always fit inside the div
- remove 'X' and '+' chars </details>
<details><summary>Version 1.3.0</summary>
- migrate to .NET 7 </details>
<details><summary>Version 1.2.4</summary>
- minor improvement </details>
<details><summary>Version 1.2.3</summary>
- Add type="button" </details>
<details><summary>Version 1.2.2</summary>
- add nuget package SkiaSharp.NativeAssets.Linux </details>
<details><summary>Version 1.2.0</summary>
- NET6, removal of the bootstrap class </details>
⚠️ Breaking changes ⚠️
<details><summary>Version 1.0.1 to 1.1.0</summary>
- Change the parameter "CaptchaWord" ⇒ "@bind-CaptchaWord"
- Add the parameter with the length of the word ex : "CharNumber="@CaptchaLetters"
- Remove the "OnRefresh" parameter </details>
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. net9.0 was computed. 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. |
-
net8.0
- Microsoft.AspNetCore.Components (>= 8.0.14)
- Microsoft.AspNetCore.Components.Web (>= 8.0.14)
- SkiaSharp (>= 3.116.1)
- SkiaSharp.Views.Blazor (>= 3.116.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Update nuget packages