Skip to content

Commit 576c4dc

Browse files
jbjordanjsquire
andauthored
Update Message.cs (Azure#29730)
* Update Message.cs Updated comments for EnqueuedSequenceNumber * Update sdk/servicebus/Microsoft.Azure.ServiceBus/src/Message.cs Co-authored-by: Jesse Squire <jesse.squire@gmail.com>
1 parent b8a1c9d commit 576c4dc

File tree

1 file changed

+7
-3
lines changed
  • sdk/servicebus/Microsoft.Azure.ServiceBus/src

1 file changed

+7
-3
lines changed

sdk/servicebus/Microsoft.Azure.ServiceBus/src/Message.cs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -464,11 +464,15 @@ internal short PartitionId
464464
set => this.partitionId = value;
465465
}
466466

467-
/// <summary>Gets or sets the original sequence number of the message.</summary>
467+
/// <summary>Gets the original sequence number of the message.</summary>
468468
/// <value>The enqueued sequence number of the message.</value>
469469
/// <remarks>
470-
/// For messages that have been auto-forwarded, this property reflects the sequence number
471-
/// that had first been assigned to the message at its original point of submission. This property is read-only.
470+
/// This property is read-only.
471+
/// For messages that have been auto-forwarded from a queue to another queue, this property reflects 0.
472+
/// For messages that have been auto-forwarded from a topic subscription to another topic, this property will be updated with an appropriate
473+
/// sequence number at the destination topic.
474+
/// For messages that have been auto-forwarded from a topic subscription to a queue, this property reflects the sequence number
475+
/// that had first been assigned to the message at its original point of submission.
472476
/// </remarks>
473477
public long EnqueuedSequenceNumber
474478
{

0 commit comments

Comments
 (0)