Condividi tramite


EntityStatus Enum

Definition

Enumerates the possible values for the status of a messaging entity.

[System.Runtime.Serialization.DataContract(Name="EntityStatus", Namespace="http://schemas.microsoft.com/netservices/2010/10/servicebus/connect")]
public enum EntityStatus
[<System.Runtime.Serialization.DataContract(Name="EntityStatus", Namespace="http://schemas.microsoft.com/netservices/2010/10/servicebus/connect")>]
type EntityStatus = 
Public Enum EntityStatus
Inheritance
EntityStatus
Attributes

Fields

Name Value Description
Active 0

The status of the messaging entity is active.

Disabled 1

The status of the messaging entity is disabled.

Restoring 2

Resuming the previous status of the messaging entity.

SendDisabled 3

The sending status of the messaging entity is disabled.

ReceiveDisabled 4

The receiving status of the messaging entity is disabled.

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).

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).

Renaming 7

The messaging entity is being renamed.

Unknown 99

The status of the messaging entity is unknown.

Applies to