MessageReceiver.AbandonAsync Method

Definition

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 asynchronous operation.

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.

propertiesToModify
IDictionary<String,Object>

The properties to modify.

Returns

The asynchronous operation.

Applies to