SubscriptionClient.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

A task instance that represents the asynchronous abandon 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 bound to the locked message instance to abandon.

propertiesToModify
IDictionary<String,Object>

A collection of property objects to be modified.

Returns

A task instance that represents the asynchronous abandon operation.

Applies to