QueueClient.AbandonAsync 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
AbandonAsync(Guid) |
Asynchronously discards the message and relinquishes the message lock ownership. |
AbandonAsync(Guid, IDictionary<String,Object>) |
Asynchronously discards the message and relinquishes the message lock ownership. |
AbandonAsync(Guid)
Asynchronously discards the message and relinquishes the message lock ownership.
public System.Threading.Tasks.Task AbandonAsync (Guid lockToken);
abstract member AbandonAsync : Guid -> System.Threading.Tasks.Task
override this.AbandonAsync : Guid -> System.Threading.Tasks.Task
Public Function AbandonAsync (lockToken As Guid) As Task
Parameters
- lockToken
- Guid
The lock token bound to the locked message instance to abandon.
Returns
The discarded message.
Applies to
AbandonAsync(Guid, IDictionary<String,Object>)
Asynchronously discards the message and relinquishes the message lock ownership.
public System.Threading.Tasks.Task AbandonAsync (Guid lockToken, System.Collections.Generic.IDictionary<string,object> propertiesToModify);
abstract member AbandonAsync : Guid * System.Collections.Generic.IDictionary<string, obj> -> System.Threading.Tasks.Task
override this.AbandonAsync : Guid * System.Collections.Generic.IDictionary<string, obj> -> System.Threading.Tasks.Task
Public Function AbandonAsync (lockToken As Guid, propertiesToModify As IDictionary(Of String, Object)) As Task
Parameters
- lockToken
- Guid
The lock token bound to the locked message instance to abandon.
- propertiesToModify
- IDictionary<String,Object>
The properties of the message to modify.
Returns
The discarded message.
Applies to
Azure SDK for .NET