Class PartitionPublishingProperties
A set of information for an Event Hub.
Inheritance
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Messaging.EventHubs.dll
Syntax
[System.ComponentModel.EditorBrowsable]
public class PartitionPublishingProperties
Properties
IsIdempotentPublishingEnabled
Indicates whether or not idempotent publishing is enabled for the producer and, by extension, the associated partition.
Declaration
public bool IsIdempotentPublishingEnabled { get; }
Property Value
System.Boolean
|
LastPublishedSequenceNumber
The sequence number assigned to the event that was most recently published to the associated partition successfully.
Declaration
public Nullable<int> LastPublishedSequenceNumber { get; }
Property Value
System.Nullable<System.Int32>
The sequence number will be in the range of A value of |
OwnerLevel
The owner level of the producer publishing to the associated partition.
Declaration
public Nullable<short> OwnerLevel { get; }
Property Value
System.Nullable<System.Int16>
|
ProducerGroupId
The identifier of the producer group for which this producer is publishing to the associated partition.
Declaration
public Nullable<long> ProducerGroupId { get; }
Property Value
System.Nullable<System.Int64>
|
Methods
Equals(Object)
Determines whether the specified System.Object is equal to this instance.
Declaration
[System.ComponentModel.EditorBrowsable]
public override bool Equals (object obj);
Parameters
System.Object
obj
The System.Object to compare with this instance. |
Returns
System.Boolean
|
GetHashCode()
Returns a hash code for this instance.
Declaration
[System.ComponentModel.EditorBrowsable]
public override int GetHashCode ();
Returns
System.Int32
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. |
ToString()
Converts the instance to string representation.
Declaration
[System.ComponentModel.EditorBrowsable]
public override string ToString ();
Returns
System.String
A System.String that represents this instance. |