MessageReceiver.Abandon Method
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.
Overloads
Abandon(Guid) |
Discards the message and relinquishes the message lock ownership. |
Abandon(Guid, IDictionary<String,Object>) |
Discards the message and relinquishes the message lock ownership. |
Abandon(Guid)
Discards the message and relinquishes the message lock ownership.
public void Abandon (Guid lockToken);
abstract member Abandon : Guid -> unit
override this.Abandon : Guid -> unit
Public Sub Abandon (lockToken As Guid)
Parameters
- lockToken
- Guid
The lock token bound to the locked message instance to abandon.
Remarks
When the message receiver fails to get the message from the queue/topic, this method should be called. The Service Bus will increment the delivery count of the message. The message receiver now can either attempt to receive the message again or move it to the dead-letter queue.
Applies to
Abandon(Guid, IDictionary<String,Object>)
Discards the message and relinquishes the message lock ownership.
public void Abandon (Guid lockToken, System.Collections.Generic.IDictionary<string,object> propertiesToModify);
abstract member Abandon : Guid * System.Collections.Generic.IDictionary<string, obj> -> unit
override this.Abandon : Guid * System.Collections.Generic.IDictionary<string, obj> -> unit
Public Sub Abandon (lockToken As Guid, propertiesToModify As IDictionary(Of String, Object))
Parameters
- lockToken
- Guid
The lock token.
- propertiesToModify
- IDictionary<String,Object>
The properties to modify.
Applies to
Azure SDK for .NET