Skip to content

Commit 8f26c5d

Browse files
authored
Update delayed-delivery.md
1 parent 0890a2a commit 8f26c5d

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

nservicebus/messaging/delayed-delivery.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Delayed Delivery
33
summary: Delay delivery of messages until a later time.
44
component: core
5-
reviewed: 2023-07-16
5+
reviewed: 2025-07-01
66
related:
77
- samples/delayed-delivery
88
---
@@ -13,25 +13,19 @@ Delayed delivery is used for:
1313

1414
* [Timeout messages](/nservicebus/sagas/timeouts.md) sent by [sagas](/nservicebus/sagas/)
1515
* [Delayed retries](/nservicebus/recoverability/#delayed-retries), to retry a message after successive delays when [immediate retries](/nservicebus/recoverability/#immediate-retries) don't result in successful processing
16-
* Explicitly sending a message with a delay, as described below
16+
* Explicitly sending a message with a delay using `SendOptions` as described below
1717

1818
> [!NOTE]
1919
> Only send operations can be deferred. Publish and reply operations cannot be deferred.
2020
21-
## Delaying message dispatching
22-
23-
24-
Delaying a message is done using `SendOptions` and the `DelayDeliveryWith` method. This allows to defer the sending of a message to any endpoint. The behavior of delayed handling using `DelayDeliveryWith` can be seen in [Delayed Delivery Sample](/samples/delayed-delivery).
25-
26-
27-
## Using a TimeSpan
21+
## Delay using a TimeSpan
2822

2923
Delays delivery of a message for a specified duration.
3024

3125
snippet: delayed-delivery-timespan
3226

3327

34-
## Using a DateTime
28+
## Delay using a DateTime
3529

3630
Delays delivery of a message until a specified point in time.
3731

0 commit comments

Comments
 (0)