Quartz.HttpClient 4.0.1

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

Quartz.HttpClient

Quartz.HttpClient is the client half of the Quartz HTTP API. HttpScheduler is a full IScheduler implementation whose calls go over the wire, so an operator process, a control panel or a deployment script schedules jobs against a remote scheduler with the same code it would use against a local one.

Installation

dotnet add package Quartz.HttpClient

The server has to be running the HTTP API, which ships in Quartz.AspNetCore.

Usage

builder.Services.AddHttpClient("quartz", client =>
    client.BaseAddress = new Uri("https://scheduler.example.com/quartz-api/"));

builder.Services.AddQuartzHttpClient(schedulerName: "MyScheduler", httpClientName: "quartz");

IScheduler is then injectable like any local one — keyed by scheduler name, and unkeyed while it is the only scheduler in the container. new HttpScheduler(name, httpClient) does the same without a container.

Two things must line up: the base address plus the API path have to reach the endpoints, and the name the client is registered with has to be the remote scheduler's own SchedulerName — a mismatch is a 404, not a connection error. The base address must end in /.

Context and ListenerManager throw NotSupportedException: both are live in-process objects of the scheduler, and listeners run where the jobs run. The remaining property members of IScheduler (Status, SchedulerInstanceId) each block the calling thread for a round trip, so use GetMetadata() on a request path.

Documentation

https://www.quartz-scheduler.net/documentation/quartz-4.x/packages/http-client.html

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
4.0.1 42 9/8/2026
4.0.0 88 9/3/2026
4.0.0-rc.2 48 9/3/2026
4.0.0-rc.1 55 9/3/2026
4.0.0-beta.1 55 9/2/2026
4.0.0-alpha.5 53 8/31/2026
4.0.0-alpha.4 54 8/31/2026
4.0.0-alpha.3 57 8/27/2026
4.0.0-alpha.2 62 8/25/2026
4.0.0-alpha.1 71 8/22/2026