DevProxy.Abstractions 3.0.0-beta.3

This is a prerelease version of DevProxy.Abstractions.
dotnet add package DevProxy.Abstractions --version 3.0.0-beta.3
                    
NuGet\Install-Package DevProxy.Abstractions -Version 3.0.0-beta.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="DevProxy.Abstractions" Version="3.0.0-beta.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DevProxy.Abstractions" Version="3.0.0-beta.3" />
                    
Directory.Packages.props
<PackageReference Include="DevProxy.Abstractions" />
                    
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 DevProxy.Abstractions --version 3.0.0-beta.3
                    
#r "nuget: DevProxy.Abstractions, 3.0.0-beta.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.
#:package DevProxy.Abstractions@3.0.0-beta.3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DevProxy.Abstractions&version=3.0.0-beta.3&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=DevProxy.Abstractions&version=3.0.0-beta.3&prerelease
                    
Install as a Cake Tool

Dev Proxy Abstractions

NuGet Version NuGet Downloads

Abstractions for building custom Dev Proxy plugins. Dev Proxy is an API simulator that helps you effortlessly test your app beyond the happy path.

What This Package Does

This package provides the interfaces, base classes, and models needed to build custom Dev Proxy plugins. Use it when you want to extend Dev Proxy with your own functionality.

Usage

Create a new class library project and add a reference to this package:

dotnet add package DevProxy.Abstractions

Then, implement the IPlugin interface or inherit from BasePlugin:

using DevProxy.Abstractions.Plugins;
using DevProxy.Abstractions.Proxy;
using Microsoft.Extensions.Logging;

public class MyPlugin(
    ILogger logger,
    ISet<UrlToWatch> urlsToWatch) : BasePlugin(logger, urlsToWatch)
{
    public override string Name => nameof(MyPlugin);

    public override async Task BeforeRequestAsync(
        ProxyRequestArgs e,
        CancellationToken cancellationToken)
    {
        // Your custom logic here
    }
}

For more information, see the Dev Proxy documentation.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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
3.0.0-beta.3 80 5/18/2026
3.0.0-beta.2 49 5/13/2026