EventPosition Class
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.
Defines a position of an EventData in the event hub partition. The position can be one of Offset, SequenceNumber or EnqueuedTimeUtc.
public class EventPosition
type EventPosition = class
Public Class EventPosition
- Inheritance
-
EventPosition
Methods
FromEnd() |
Returns the position for the end of a stream. Provide this position in receiver creation to start receiving from the next available event in the partition after the receiver is created. |
FromEnqueuedTime(DateTime) |
Creates a position at the given enqueued time. Events after this time are returned. |
FromOffset(String, Boolean) |
Creates a position at the given offset. |
FromSequenceNumber(Int64, Boolean) |
Creates a position at the given sequence number. |
FromStart() |
Returns the position for the start of a stream. Provide this position in receiver creation to starting receiving from the first available event in the partition. |
Applies to
Azure SDK for .NET