ServiceBusReceivedMessage.ScheduledEnqueueTime Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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; }
member this.ScheduledEnqueueTime : DateTimeOffset
Public ReadOnly 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
Azure SDK for .NET