Skip to content

Commit 7696a3e

Browse files
committed
Removed formatting from headings
1 parent 368215a commit 7696a3e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

16/umbraco-cms/reference/scheduling.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Be aware you may or may not want this background job to run on all servers. If y
1414

1515
## `IRecurringBackgroundJob` Properties and Methods
1616

17-
### `Period`
17+
### Period
1818

1919
Defines how often the job runs. This property is a `TimeSpan`.
2020

@@ -23,7 +23,7 @@ Defines how often the job runs. This property is a `TimeSpan`.
2323
TimeSpan Period = TimeSpan.FromMinutes(5);
2424
```
2525

26-
### `Delay`
26+
### Delay
2727

2828
Defines how long to wait after application startup before running the task for the first time. Default is 3 minutes. This property is a `TimeSpan`.
2929

@@ -32,7 +32,7 @@ Defines how long to wait after application startup before running the task for t
3232
TimeSpan Delay = TimeSpan.FromMinutes(3);
3333
```
3434

35-
### `ServerRoles`
35+
### ServerRoles
3636

3737
Specifies a list of roles that should run this job. In a multi-server setup, you may want your job to run on _all_ servers or only on _one_ of your servers.
3838

@@ -47,7 +47,7 @@ ServerRole[] ServerRoles = Enum.GetValues<ServerRole>();
4747

4848
For more information about server roles, see the [Load Balancing](../fundamentals/setup/server-setup/load-balancing/README.md#scheduling-and-server-role-election) documentation.
4949

50-
### `PeriodChanged`
50+
### PeriodChanged
5151

5252
An event used to notify the background job service if the job’s period changes dynamically.
5353

@@ -60,7 +60,7 @@ public event EventHandler PeriodChanged { add { } remove { } }
6060

6161
See the [Example](#example) below on how to implement the `PeriodChanged` event.
6262

63-
### `RunJobAsync()`
63+
### RunJobAsync()
6464

6565
The main method where your job logic is implemented.
6666

0 commit comments

Comments
 (0)