SeliseBlocks.CaptchaDriver 8.0.0-preview.18

This is a prerelease version of SeliseBlocks.CaptchaDriver.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package SeliseBlocks.CaptchaDriver --version 8.0.0-preview.18
                    
NuGet\Install-Package SeliseBlocks.CaptchaDriver -Version 8.0.0-preview.18
                    
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="SeliseBlocks.CaptchaDriver" Version="8.0.0-preview.18" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SeliseBlocks.CaptchaDriver" Version="8.0.0-preview.18" />
                    
Directory.Packages.props
<PackageReference Include="SeliseBlocks.CaptchaDriver" />
                    
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 SeliseBlocks.CaptchaDriver --version 8.0.0-preview.18
                    
#r "nuget: SeliseBlocks.CaptchaDriver, 8.0.0-preview.18"
                    
#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=SeliseBlocks.CaptchaDriver&version=8.0.0-preview.18&prerelease
                    
Install SeliseBlocks.CaptchaDriver as a Cake Addin
#tool nuget:?package=SeliseBlocks.CaptchaDriver&version=8.0.0-preview.18&prerelease
                    
Install SeliseBlocks.CaptchaDriver as a Cake Tool

SeliseBlocks.CaptchaDriver

Overview

SeliseBlocks.CaptchaDriver is a Captcha driver designed to integrate captcha functionalities into your application. It provides a standardized way to create, submit and verify captcha.

Installation

To install SeliseBlocks.CaptchaDriver, add the NuGet package to your project:

dotnet add package SeliseBlocks.CaptchaDriver

Usage

Register Dependencies

Before using SeliseBlocks.CaptchaDriver, ensure that all required dependencies are registered in your application's dependency injection container. Add the following line in your Program.cs:

use the namespace

using Blocks.Extension.DependencyInjection;

register the service

builder.Services.RegisterBlocksCaptchaService();

This method will configure and register all necessary services required for the Captcha driver to function properly.

Features

  • Create Captcha

    var request = new CreateCaptchaRequest
    {
        ConfigurationName = <string>
    }
    

    Invoke Create

    await Create(request);
    
  • Submit Captcha

    var request = new SubmitCaptchaRequest
    {
        Id = <string>,
        Value = <string>
    }
    

    Invoke Submit

    await Submit(request);
    
  • Verify Captcha

    var request = new VerifyCaptchaRequest
    {
        VerificationCode = <string>,
        ConfigurationName = <string>
    }
    

    Invoke Verify

    await Verify(request);
    

use the below namespace before invoking any of the methods.

using Blocks.CaptchaDriver;
Product 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. 
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
9.0.0-preview.21 149 12 days ago
9.0.0-preview.20 147 12 days ago
9.0.0-preview.19 148 12 days ago
8.0.0-preview.18 227 a month ago
8.0.0-preview.17 113 a month ago
8.0.0-preview.16 123 2 months ago
8.0.0-preview.15 119 2 months ago
8.0.0-preview.14 120 2 months ago
8.0.0-preview.13 120 2 months ago
8.0.0-preview.12 61 2 months ago
8.0.0-preview.11 72 2 months ago
8.0.0-preview.10 58 2 months ago
8.0.0-preview.9 51 2 months ago
8.0.0-preview.8 60 2 months ago
8.0.0-preview.7 60 2 months ago
8.0.0-preview.6 58 2 months ago
8.0.0-preview.5 54 2 months ago
8.0.0-preview.4 56 2 months ago
8.0.0-preview.3 53 2 months ago
8.0.0-preview.2 58 2 months ago
8.0.0-preview.1 59 2 months ago