| 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. (Inherited from ServiceBusReceiver) |
| CloseAsync(CancellationToken) |
Performs the task needed to clean up resources used by the ServiceBusReceiver. (Inherited from ServiceBusReceiver) |
| CompleteMessageAsync(ServiceBusReceivedMessage, CancellationToken) |
Completes a ServiceBusReceivedMessage. This will delete the message from the service. (Inherited from ServiceBusReceiver) |
| DeadLetterMessageAsync(ServiceBusReceivedMessage, IDictionary<String,Object>, CancellationToken) |
Moves a message to the dead-letter subqueue. (Inherited from ServiceBusReceiver) |
| DeadLetterMessageAsync(ServiceBusReceivedMessage, IDictionary<String,Object>, String, String, CancellationToken) |
Moves a message to the dead-letter subqueue. (Inherited from ServiceBusReceiver) |
| DeadLetterMessageAsync(ServiceBusReceivedMessage, String, String, CancellationToken) |
Moves a message to the dead-letter subqueue. (Inherited from ServiceBusReceiver) |
| DeferMessageAsync(ServiceBusReceivedMessage, IDictionary<String,Object>, CancellationToken) |
Indicates that the receiver wants to defer the processing for the message. (Inherited from ServiceBusReceiver) |
| DeleteMessagesAsync(Int32, Nullable, CancellationToken) |
Deletes up to messageCount messages from the entity. The actual number of deleted messages may be less if there are fewer eligible messages in the entity. (Inherited from ServiceBusReceiver) |
| DisposeAsync() |
Performs the task needed to clean up resources used by the ServiceBusReceiver. This is equivalent to calling CloseAsync(CancellationToken). (Inherited from ServiceBusReceiver) |
| GetSessionStateAsync(CancellationToken) |
Gets the session state. |
| PeekMessageAsync(Nullable, CancellationToken) |
Fetches the next active ServiceBusReceivedMessage without changing the state of the receiver or the message source. (Inherited from ServiceBusReceiver) |
| PeekMessagesAsync(Int32, Nullable, CancellationToken) |
Fetches a list of active messages without changing the state of the receiver or the message source. (Inherited from ServiceBusReceiver) |
| PurgeMessagesAsync(Nullable, CancellationToken) |
Attempts to purge all messages from an entity. Locked messages are not eligible for removal and will remain in the entity. (Inherited from ServiceBusReceiver) |
| ReceiveDeferredMessageAsync(Int64, CancellationToken) |
Receives a deferred message identified by sequenceNumber. (Inherited from ServiceBusReceiver) |
| ReceiveDeferredMessagesAsync(IEnumerable, CancellationToken) |
Receives a list of deferred messages identified by sequenceNumbers. (Inherited from ServiceBusReceiver) |
| ReceiveMessageAsync(Nullable, CancellationToken) |
Receives a ServiceBusReceivedMessage from the entity using ReceiveMode mode.ReceiveMode defaults to PeekLock mode. (Inherited from ServiceBusReceiver) |
| ReceiveMessagesAsync(CancellationToken) |
Receives messages as an asynchronous enumerable from the entity using ReceiveMode mode.ReceiveMode defaults to PeekLock mode. Messages will be received from the entity as the IAsyncEnumerable is iterated. If no messages are available, this method will continue polling until messages are available, i.e. it will never return null. (Inherited from ServiceBusReceiver) |
| ReceiveMessagesAsync(Int32, Nullable, CancellationToken) |
Receives a list of ServiceBusReceivedMessage from the entity using ReceiveMode mode.ReceiveMode defaults to PeekLock mode. This method doesn't guarantee to return exact maxMessages messages, even if there are maxMessages messages available in the queue or topic. (Inherited from ServiceBusReceiver) |
| RenewMessageLockAsync(ServiceBusReceivedMessage, CancellationToken) |
Renews the lock on the message. The lock will be renewed based on the setting specified on the queue. (Inherited from ServiceBusReceiver) |
| RenewSessionLockAsync(CancellationToken) |
Renews the lock on the session specified by the SessionId. The lock will be renewed based on the setting specified on the entity. |
| SetSessionStateAsync(BinaryData, CancellationToken) |
Set a custom state on the session which can be later retrieved using GetSessionStateAsync(CancellationToken) |