Enum EntityStatus
- Namespace
- Microsoft.ServiceBus.Messaging
- Assembly
- Microsoft.ServiceBus.dll
Enumerates the possible values for the status of a messaging entity.
[DataContract(Name = "EntityStatus", Namespace = "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect")]
public enum EntityStatus
Fields
[EnumMember] Active = 0
The status of the messaging entity is active.
[EnumMember] Creating = 5
Indicates that the resource is still being created. Any creation attempt on the same resource path will result in a MessagingException exception (HttpCode.Conflict 409).
[EnumMember] Deleting = 6
Indicates that the system is still attempting cleanup of the entity. Any additional deletion call will be allowed (the system will be notified). Any additional creation call on the same resource path will result in a MessagingException exception (HttpCode.Conflict 409).
[EnumMember] Disabled = 1
The status of the messaging entity is disabled.
[EnumMember] ReceiveDisabled = 4
The receiving status of the messaging entity is disabled.
[EnumMember] Renaming = 7
The messaging entity is being renamed.
[EnumMember] Restoring = 2
Resuming the previous status of the messaging entity.
[EnumMember] SendDisabled = 3
The sending status of the messaging entity is disabled.
[EnumMember] Unknown = 99
The status of the messaging entity is unknown.