QueueClient.Defer 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
Defer(Guid) |
Suspends the processing of a message. |
Defer(Guid, IDictionary<String,Object>) |
Suspends the processing of a message. |
Defer(Guid)
Suspends the processing of a message.
public void Defer (Guid lockToken);
abstract member Defer : Guid -> unit
override this.Defer : Guid -> unit
Public Sub Defer (lockToken As Guid)
Parameters
- lockToken
- Guid
The lock token bound to the locked message instance.
Exceptions
Thrown if the operation exceeded the timeout value set by OperationTimeout
Thrown if the client entity has been closed or aborted.
Thrown if the message represented by
the lockToken
has lost the message lock.
Remarks
Before deferring, you should set aside the message receipt for later retrieval.
Applies to
Defer(Guid, IDictionary<String,Object>)
Suspends the processing of a message.
public void Defer (Guid lockToken, System.Collections.Generic.IDictionary<string,object> propertiesToModify);
abstract member Defer : Guid * System.Collections.Generic.IDictionary<string, obj> -> unit
override this.Defer : Guid * System.Collections.Generic.IDictionary<string, obj> -> unit
Public Sub Defer (lockToken As Guid, propertiesToModify As IDictionary(Of String, Object))
Parameters
- lockToken
- Guid
The lock token bound to the locked message instance.
- propertiesToModify
- IDictionary<String,Object>
The properties of the message to modify.
Remarks
Before deferring, you should set aside the message receipt for later retrieval.
Applies to
Azure SDK for .NET