EventHubReceiver.StartingDateTimeUtc 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 the starting date and time in UTC format for this receiver. The Receive() method starts receiving the next event after this StartingDateTimeUtc value. If null, the receiver starts receiving events from the beginning of the Event Hubs event stream.
public DateTime? StartingDateTimeUtc { get; }
member this.StartingDateTimeUtc : Nullable<DateTime>
Public ReadOnly Property StartingDateTimeUtc As Nullable(Of DateTime)
Property Value
The starting date and time in UTC.
Remarks
Service only uses this datetime as an approximation when delivering next event. Keep in mind that there can be clock skew between client time and service time, so user application should be designed to handle duplication in event delivery.