BrokeredMessage.EndDefer Method
Ends an asynchronous request to defer a message.
Namespace: Microsoft.ServiceBus.Messaging
Assembly: Microsoft.ServiceBus (in Microsoft.ServiceBus.dll)
Parameters
- result
- Type: System.IAsyncResult
An IAsyncResult that references the Defer method.
| Exception | Condition |
|---|---|
| ArgumentException |
Thrown if an incorrect result is provided. The result object passed to EndDefer must be the one returned from the matching BeginDefer or passed to the callback provided to BeginDefer. |
| ArgumentNullException |
Thrown if invoked with a null result. |
| MessagingCommunicationException |
Thrown when the queue or subscription that receives the message is no longer present in the message server. |
| TimeoutException |
Thrown when the operation times out. Timeout period is initialized through the MessagingFactorySettings. You may need to increase the value of OperationTimeout to avoid this exception if timeout value is relatively low. |
| MessageLockLostException |
Thrown if the lock on the message has expired. LockDuration is an entity-wide setting and can be initialized through LockDuration and LockDuration for Queues and Subscriptions respectively. |
| SessionLockLostException |
Thrown if the lock on the session has expired. Session lock duration is the same as message LockDuration and is an entity-wide setting. It can be initialized through LockDuration and LockDuration for Queues and Subscriptions respectively. |
| InvalidOperationException |
Thrown when invoked on a message that has not been received in peek-lock mode. |
| ServerBusyException |
When service bus service is busy and is unable process the request. |
| MessagingEntityNotFoundException |
When messaging entity the message was received from has been deleted. |
| UnauthorizedAccessException |
When the security token provided by the TokenProvider does not contain the claims to perform this operation. |
| QuotaExceededException |
When the number of concurrent connections to an entity exceed the maximum allowed value. |