Update daprdocs/content/en/developing-applications/building-blocks/jobs/howto-schedule-and-handle-triggered-jobs.md

Co-authored-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com>
Signed-off-by: Whit Waldo <whit.waldo@innovian.net>
This commit is contained in:
Whit Waldo 2025-01-22 13:17:00 -06:00 committed by GitHub
parent ed8c9529e6
commit ec449fd43c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ In your code, set up and schedule jobs within your application.
<!-- .NET --> <!-- .NET -->
The following .NET SDK code sample schedules the job named `prod-db-backup`. Our job data will contain information The following .NET SDK code sample schedules the job named `prod-db-backup`. The job data contains information
about the database we're seeking to make regular backups of. Over the course of this example, we'll do the following: about the database we're seeking to make regular backups of. Over the course of this example, we'll do the following:
- Define types used in the rest of the example - Define types used in the rest of the example
- Register an endpoint during application startup that handles all job trigger invocations on the service - Register an endpoint during application startup that handles all job trigger invocations on the service