EdgeCron 1.0.0

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

EdgeCron .NET SDK

Official .NET SDK for the EdgeCron webhook scheduling and callback delivery platform.

Schedule delayed HTTP requests, deliver webhooks reliably, and automatically retry failed calls — with full execution history so nothing gets lost.

中文文档:README.zh-CN.md

Install

dotnet add package EdgeCron

Quick Start

using EdgeCron;

var client = new EdgeCronClient("ak_xxx", "sk_xxx");

try
{
    var schedule = await client.Schedules.CreateAsync("my-schedule", "*/5 * * * *");
    Console.WriteLine(schedule.Id);
}
catch (ApiErrorException error)
{
    Console.WriteLine($"{error.Code} {error.Message} {error.RequestId}");
}

Modules

Client method Description
client.Schedules.* Cron schedule CRUD, pause, resume
client.Tasks.* Task execution instances, cancel
client.Events.* Event publishing and management
client.Endpoints.* Webhook endpoint configuration
client.Deliveries.* Delivery attempt records and retry
client.Retries.* Retry policies and jobs
client.Subscription.* Quota, usage, and resource limits

Configuration

  • options.BaseUrl — override API base URL
  • options.HttpClient — custom HttpClient

Error Handling

Service-side business errors throw ApiErrorException.

using EdgeCron;

try
{
    await client.Schedules.GetAsync(123);
}
catch (ApiErrorException error)
{
    Console.WriteLine($"{error.Code} {error.Message} {error.RequestId}");
}

Security Notice

This is a server-side SDK. Do not expose secret in browsers or mobile apps.

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.
  • net10.0

    • No dependencies.

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
1.0.0 98 7/2/2026