CloudQueue Constructors

Definition

Overloads

CloudQueue(Uri)

Initializes a new instance of the CloudQueue class.

CloudQueue(StorageUri, StorageCredentials)

Initializes a new instance of the CloudQueue class.

CloudQueue(Uri, StorageCredentials)

Initializes a new instance of the CloudQueue class.

CloudQueue(Uri)

Initializes a new instance of the CloudQueue class.

public CloudQueue (Uri queueAddress);
new Microsoft.Azure.Storage.Queue.CloudQueue : Uri -> Microsoft.Azure.Storage.Queue.CloudQueue
Public Sub New (queueAddress As Uri)

Parameters

queueAddress
Uri

A Uri specifying the absolute URI to the queue.

Applies to

CloudQueue(StorageUri, StorageCredentials)

Initializes a new instance of the CloudQueue class.

public CloudQueue (Microsoft.Azure.Storage.StorageUri queueAddress, Microsoft.Azure.Storage.Auth.StorageCredentials credentials);
new Microsoft.Azure.Storage.Queue.CloudQueue : Microsoft.Azure.Storage.StorageUri * Microsoft.Azure.Storage.Auth.StorageCredentials -> Microsoft.Azure.Storage.Queue.CloudQueue
Public Sub New (queueAddress As StorageUri, credentials As StorageCredentials)

Parameters

queueAddress
StorageUri

A StorageUri containing the absolute URI to the queue at both the primary and secondary locations.

credentials
StorageCredentials

A StorageCredentials object.

Applies to

CloudQueue(Uri, StorageCredentials)

Initializes a new instance of the CloudQueue class.

public CloudQueue (Uri queueAddress, Microsoft.Azure.Storage.Auth.StorageCredentials credentials);
new Microsoft.Azure.Storage.Queue.CloudQueue : Uri * Microsoft.Azure.Storage.Auth.StorageCredentials -> Microsoft.Azure.Storage.Queue.CloudQueue
Public Sub New (queueAddress As Uri, credentials As StorageCredentials)

Parameters

queueAddress
Uri

A Uri specifying the absolute URI to the queue.

credentials
StorageCredentials

A StorageCredentials object.

Applies to