ServiceBusMessage.ScheduledEnqueueTime Property

Definition

Gets or sets the date and time, in UTC, at which the message should be made available to receivers. This property does not control when a message is sent by the client. Sending happens immediately when SendAsync is called. Service Bus will hide the message from receivers until the the requested time.

public DateTimeOffset ScheduledEnqueueTime { get; set; }
member this.ScheduledEnqueueTime : DateTimeOffset with get, set
Public Property ScheduledEnqueueTime As DateTimeOffset

Property Value

The date and time, in UTC, at which the message should be available to receivers. This time may not be exact; the actual time depends on the entity's workload and state.

Remarks

Message enqueuing time does not mean that the message will be sent at the same time. It will get enqueued, but the actual sending time depends on the queue's workload and its state.

Applies to