LastEnqueuedEventProperties Constructors

Definition

Overloads

LastEnqueuedEventProperties(Nullable<Int64>, Nullable<Int64>, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

Initializes a new instance of the LastEnqueuedEventProperties class.

LastEnqueuedEventProperties(Nullable<Int64>, String, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

Initializes a new instance of the LastEnqueuedEventProperties class.

LastEnqueuedEventProperties(Nullable<Int64>, Nullable<Int64>, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

Source:
LastEnqueuedEventProperties.cs

Initializes a new instance of the LastEnqueuedEventProperties class.

public LastEnqueuedEventProperties (long? lastSequenceNumber, long? lastOffset, DateTimeOffset? lastEnqueuedTime, DateTimeOffset? lastReceivedTime);
new Azure.Messaging.EventHubs.Consumer.LastEnqueuedEventProperties : Nullable<int64> * Nullable<int64> * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> -> Azure.Messaging.EventHubs.Consumer.LastEnqueuedEventProperties
Public Sub New (lastSequenceNumber As Nullable(Of Long), lastOffset As Nullable(Of Long), lastEnqueuedTime As Nullable(Of DateTimeOffset), lastReceivedTime As Nullable(Of DateTimeOffset))

Parameters

lastSequenceNumber
Nullable<Int64>

The sequence number observed the last event to be enqueued in the partition.

lastOffset
Nullable<Int64>

The offset of the last event to be enqueued in the partition.

lastEnqueuedTime
Nullable<DateTimeOffset>

The date and time, in UTC, that the last event was enqueued in the partition.

lastReceivedTime
Nullable<DateTimeOffset>

The date and time, in UTC, that the information was last received.

Applies to

LastEnqueuedEventProperties(Nullable<Int64>, String, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

Source:
LastEnqueuedEventProperties.cs

Initializes a new instance of the LastEnqueuedEventProperties class.

public LastEnqueuedEventProperties (long? lastSequenceNumber, string lastOffset, DateTimeOffset? lastEnqueuedTime, DateTimeOffset? lastReceivedTime);
new Azure.Messaging.EventHubs.Consumer.LastEnqueuedEventProperties : Nullable<int64> * string * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> -> Azure.Messaging.EventHubs.Consumer.LastEnqueuedEventProperties
Public Sub New (lastSequenceNumber As Nullable(Of Long), lastOffset As String, lastEnqueuedTime As Nullable(Of DateTimeOffset), lastReceivedTime As Nullable(Of DateTimeOffset))

Parameters

lastSequenceNumber
Nullable<Int64>

The sequence number observed the last event to be enqueued in the partition.

lastOffset
String

The offset of the last event to be enqueued in the partition.

lastEnqueuedTime
Nullable<DateTimeOffset>

The date and time, in UTC, that the last event was enqueued in the partition.

lastReceivedTime
Nullable<DateTimeOffset>

The date and time, in UTC, that the information was last received.

Applies to