ServiceBusMessageActions Class
In this article
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.
public class ServiceBusMessageActions
type ServiceBusMessageActions = class
Public Class ServiceBusMessageActions
Inheritance
Derived
Constructors
Methods
AbandonMessageAsync(ServiceBusReceivedMessage, IDictionary<String,Object>, CancellationToken)
Abandons a ServiceBusReceivedMessage .This will make the message available again for immediate processing as the lock on the message held by the receiver will be released.
CompleteMessageAsync(ServiceBusReceivedMessage, CancellationToken)
Completes a ServiceBusReceivedMessage . This will delete the message from the service.
DeadLetterMessageAsync(ServiceBusReceivedMessage, Dictionary<String,Object>, String, String, CancellationToken)
Moves a message to the dead-letter subqueue.
DeadLetterMessageAsync(ServiceBusReceivedMessage, IDictionary<String,Object>, CancellationToken)
Moves a message to the dead-letter subqueue.
DeadLetterMessageAsync(ServiceBusReceivedMessage, String, String, CancellationToken)
Moves a message to the dead-letter subqueue.
DeferMessageAsync(ServiceBusReceivedMessage, IDictionary<String,Object>, CancellationToken)
Indicates that the receiver wants to defer the processing for the message.
RenewMessageLockAsync(ServiceBusReceivedMessage, CancellationToken)
Renews the lock on the message. The lock will be renewed based on the setting specified on the queue.
Applies to