NamespaceManager.CreateQueue Method (String)
Creates a new queue in the service namespace with the given path.
Namespace: Microsoft.ServiceBus
Assembly: Microsoft.ServiceBus (in Microsoft.ServiceBus.dll)
Parameters
- path
- Type: System.String
The path of the queue relative to the service namespace base address.
Return Value
Type: Microsoft.ServiceBus.Messaging.QueueDescriptionThe QueueDescription of the newly created queue.
| Exception | Condition |
|---|---|
| ArgumentException | path is null or empty. |
| ArgumentOutOfRangeException | Length of path is greater than 290 characters. |
| TimeoutException | The operation times out. The timeout period is initialized through the NamespaceManagerSettings class. You may need to increase the value of the OperationTimeout property to avoid this exception if the timeout value is relatively low. |
| MessagingEntityAlreadyExistsException | A queue or a topic with the same name and path exists under the same service namespace. |
| UnauthorizedAccessException | The NamespaceManager object does not have sufficient permission to perform this operation. You should check to ensure that your NamespaceManager has the correct Credential() credentials to perform this operation. |
| QuotaExceededException | Either the specified size in the description is not supported or the maximum allowable quota has been reached. You must specify one of the supported size values, delete existing entities, or increase your quota size. |
| MessagingException | An internal error or unexpected exception occurs. |
| ServerBusyException | The server is overloaded with logical operations. You can consider any of the following actions:
|