ServiceBusFailureReason Enum
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.
The set of well-known reasons for an Service Bus operation failure that was the cause of an exception.
public enum ServiceBusFailureReason
type ServiceBusFailureReason =
Public Enum ServiceBusFailureReason
- Inheritance
-
ServiceBusFailureReason
Fields
Name | Value | Description |
---|---|---|
GeneralError | 0 | The exception was the result of a general error within the client library. |
MessagingEntityNotFound | 1 | A Service Bus resource cannot be found by the Service Bus service. |
MessageLockLost | 2 | The lock on the message is lost. Callers should call attempt to receive and process the message again. |
MessageNotFound | 3 | The requested message was not found. |
MessageSizeExceeded | 4 | A message is larger than the maximum size allowed for its transport. |
MessagingEntityDisabled | 5 | The Messaging Entity is disabled. Enable the entity again using Portal. |
QuotaExceeded | 6 | The quota applied to an Service Bus resource has been exceeded while interacting with the Azure Service Bus service. |
ServiceBusy | 7 | The Azure Service Bus service reports that it is busy in response to a client request to perform an operation. |
ServiceTimeout | 8 | An operation or other request timed out while interacting with the Azure Service Bus service. |
ServiceCommunicationProblem | 9 | There was a general communications error encountered when interacting with the Azure Service Bus service. |
SessionCannotBeLocked | 10 | The requested session cannot be locked. |
SessionLockLost | 11 | The lock on the session has expired. Callers should request the session again. |
MessagingEntityAlreadyExists | 12 | An entity with the same name exists under the same namespace. |
Applies to
Azure SDK for .NET