IQueueOperations Interface

Definition

QueueOperations operations.

public interface IQueueOperations
type IQueueOperations = interface
Public Interface IQueueOperations

Methods

CreateWithHttpMessagesAsync(String, String, String, IDictionary<String,String>, Dictionary<String,List<String>>, CancellationToken)

Creates a new queue with the specified queue name, under the specified account.

DeleteWithHttpMessagesAsync(String, String, String, Dictionary<String,List<String>>, CancellationToken)

Deletes the queue with the specified queue name, under the specified account if it exists.

GetWithHttpMessagesAsync(String, String, String, Dictionary<String,List<String>>, CancellationToken)

Gets the queue with the specified queue name, under the specified account if it exists.

ListNextWithHttpMessagesAsync(String, Dictionary<String,List<String>>, CancellationToken)

Gets a list of all the queues under the specified storage account

ListWithHttpMessagesAsync(String, String, String, String, Dictionary<String,List<String>>, CancellationToken)

Gets a list of all the queues under the specified storage account

UpdateWithHttpMessagesAsync(String, String, String, IDictionary<String,String>, Dictionary<String,List<String>>, CancellationToken)

Creates a new queue with the specified queue name, under the specified account.

Extension Methods

Create(IQueueOperations, String, String, String, IDictionary<String,String>)

Creates a new queue with the specified queue name, under the specified account.

CreateAsync(IQueueOperations, String, String, String, IDictionary<String,String>, CancellationToken)

Creates a new queue with the specified queue name, under the specified account.

Delete(IQueueOperations, String, String, String)

Deletes the queue with the specified queue name, under the specified account if it exists.

DeleteAsync(IQueueOperations, String, String, String, CancellationToken)

Deletes the queue with the specified queue name, under the specified account if it exists.

Get(IQueueOperations, String, String, String)

Gets the queue with the specified queue name, under the specified account if it exists.

GetAsync(IQueueOperations, String, String, String, CancellationToken)

Gets the queue with the specified queue name, under the specified account if it exists.

List(IQueueOperations, String, String, String, String)

Gets a list of all the queues under the specified storage account

ListAsync(IQueueOperations, String, String, String, String, CancellationToken)

Gets a list of all the queues under the specified storage account

ListNext(IQueueOperations, String)

Gets a list of all the queues under the specified storage account

ListNextAsync(IQueueOperations, String, CancellationToken)

Gets a list of all the queues under the specified storage account

Update(IQueueOperations, String, String, String, IDictionary<String,String>)

Creates a new queue with the specified queue name, under the specified account.

UpdateAsync(IQueueOperations, String, String, String, IDictionary<String,String>, CancellationToken)

Creates a new queue with the specified queue name, under the specified account.

Applies to