QueueClient.CreateIfNotExists Method

Definition

The CreateIfNotExists(IDictionary<String,String>, CancellationToken) operation creates a new queue under the specified account. If the queue already exists, it is not changed.

For more information, see Create Queue.

public virtual Azure.Response CreateIfNotExists (System.Collections.Generic.IDictionary<string,string> metadata = default, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateIfNotExists : System.Collections.Generic.IDictionary<string, string> * System.Threading.CancellationToken -> Azure.Response
override this.CreateIfNotExists : System.Collections.Generic.IDictionary<string, string> * System.Threading.CancellationToken -> Azure.Response
Public Overridable Function CreateIfNotExists (Optional metadata As IDictionary(Of String, String) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response

Parameters

metadata
IDictionary<String,String>

Optional custom metadata to set for this queue.

cancellationToken
CancellationToken

Optional CancellationToken to propagate notifications that the operation should be cancelled.

Returns

If the queue does not already exist, a Response describing the newly created queue. If the queue already exists, null.

Remarks

A RequestFailedException will be thrown if a failure occurs.

Applies to