Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

Provides a client-side logical representation of the Windows Azure Queue Service. This client is used to configure and execute requests against the Queue Service.

Namespace:   Microsoft.WindowsAzure.Storage.Queue
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Inheritance Hierarchy

System.::..Object
  Microsoft.WindowsAzure.Storage.Queue.::..CloudQueueClient

Syntax

 
public class CloudQueueClient
 
public ref class CloudQueueClient 
 
type CloudQueueClient = class end
 
Public Class CloudQueueClient

Constructors

NameDescription
System_CAPS_pubmethodCloudQueueClient(StorageUri, StorageCredentials)(StorageUri^, StorageCredentials^)(StorageUri, StorageCredentials)(StorageUri, StorageCredentials)

Initializes a new instance of the CloudQueueClient class using the specified Queue service endpoint and account credentials.

System_CAPS_pubmethodCloudQueueClient(Uri, StorageCredentials)(Uri^, StorageCredentials^)(Uri, StorageCredentials)(Uri, StorageCredentials)

Initializes a new instance of the CloudQueueClient class using the specified Queue service endpoint and account credentials.

Properties

NameDescription
System_CAPS_pubpropertyAuthenticationSchemeAuthenticationSchemeAuthenticationSchemeAuthenticationScheme

Gets or sets the authentication scheme to use to sign HTTP requests.

System_CAPS_pubpropertyBaseUriBaseUriBaseUriBaseUri

Gets the base URI for the Queue service client, at the primary location.

System_CAPS_pubpropertyBufferManagerBufferManagerBufferManagerBufferManager

Gets or sets a buffer manager that implements the IBufferManager interface, specifying a buffer pool for use with operations against the Queue service client.

System_CAPS_pubpropertyCredentialsCredentialsCredentialsCredentials

Gets the account credentials used to create the Queue service client.

System_CAPS_pubpropertyDefaultRequestOptionsDefaultRequestOptionsDefaultRequestOptionsDefaultRequestOptions

Gets and sets the default request options for requests made via the Queue service client.

System_CAPS_pubpropertyStorageUriStorageUriStorageUriStorageUri

Gets the Queue service endpoints for both the primary and secondary locations.

Methods

NameDescription
System_CAPS_pubmethodEquals(Object)(Object^)(Object)(Object)

(Inherited from Object.)

System_CAPS_protmethodFinalize()()()()

(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()()()()

(Inherited from Object.)

System_CAPS_pubmethodGetQueueReference(String)(String^)(String)(String)

Returns a reference to a CloudQueue object with the specified name.

System_CAPS_pubmethodGetServicePropertiesAsync()()()()

Gets the properties of the blob service.

System_CAPS_pubmethodGetServicePropertiesAsync(QueueRequestOptions, OperationContext)(QueueRequestOptions^, OperationContext^)(QueueRequestOptions, OperationContext)(QueueRequestOptions, OperationContext)

Gets the properties of the blob service.

System_CAPS_pubmethodGetServicePropertiesAsync(QueueRequestOptions, OperationContext, CancellationToken)(QueueRequestOptions^, OperationContext^, CancellationToken)(QueueRequestOptions, OperationContext, CancellationToken)(QueueRequestOptions, OperationContext, CancellationToken)

Gets the properties of the blob service.

System_CAPS_pubmethodGetServiceStatsAsync()()()()

Gets the stats of the queue service.

System_CAPS_pubmethodGetServiceStatsAsync(QueueRequestOptions, OperationContext)(QueueRequestOptions^, OperationContext^)(QueueRequestOptions, OperationContext)(QueueRequestOptions, OperationContext)

Gets the stats of the queue service.

System_CAPS_pubmethodGetServiceStatsAsync(QueueRequestOptions, OperationContext, CancellationToken)(QueueRequestOptions^, OperationContext^, CancellationToken)(QueueRequestOptions, OperationContext, CancellationToken)(QueueRequestOptions, OperationContext, CancellationToken)

Gets the stats of the queue service.

System_CAPS_pubmethodGetType()()()()

(Inherited from Object.)

System_CAPS_pubmethodListQueuesSegmentedAsync(QueueContinuationToken)(QueueContinuationToken^)(QueueContinuationToken)(QueueContinuationToken)

Returns a result segment containing a collection of queues.

System_CAPS_pubmethodListQueuesSegmentedAsync(String, QueueContinuationToken)(String^, QueueContinuationToken^)(String, QueueContinuationToken)(String, QueueContinuationToken)

Returns a result segment containing a collection of queues.

System_CAPS_pubmethodListQueuesSegmentedAsync(String, QueueListingDetails, Nullable<Int32>, QueueContinuationToken, QueueRequestOptions, OperationContext)(String^, QueueListingDetails, Nullable<Int32>, QueueContinuationToken^, QueueRequestOptions^, OperationContext^)(String, QueueListingDetails, Nullable<Int32>, QueueContinuationToken, QueueRequestOptions, OperationContext)(String, QueueListingDetails, Nullable(Of Int32), QueueContinuationToken, QueueRequestOptions, OperationContext)

Returns a result segment containing a collection of queues whose names begin with the specified prefix.

System_CAPS_pubmethodListQueuesSegmentedAsync(String, QueueListingDetails, Nullable<Int32>, QueueContinuationToken, QueueRequestOptions, OperationContext, CancellationToken)(String^, QueueListingDetails, Nullable<Int32>, QueueContinuationToken^, QueueRequestOptions^, OperationContext^, CancellationToken)(String, QueueListingDetails, Nullable<Int32>, QueueContinuationToken, QueueRequestOptions, OperationContext, CancellationToken)(String, QueueListingDetails, Nullable(Of Int32), QueueContinuationToken, QueueRequestOptions, OperationContext, CancellationToken)

Returns a result segment containing a collection of queues whose names begin with the specified prefix.

System_CAPS_protmethodMemberwiseClone()()()()

(Inherited from Object.)

System_CAPS_pubmethodSetServicePropertiesAsync(ServiceProperties)(ServiceProperties^)(ServiceProperties)(ServiceProperties)

Gets the properties of the blob service.

System_CAPS_pubmethodSetServicePropertiesAsync(ServiceProperties, QueueRequestOptions, OperationContext)(ServiceProperties^, QueueRequestOptions^, OperationContext^)(ServiceProperties, QueueRequestOptions, OperationContext)(ServiceProperties, QueueRequestOptions, OperationContext)

Gets the properties of the blob service.

System_CAPS_pubmethodSetServicePropertiesAsync(ServiceProperties, QueueRequestOptions, OperationContext, CancellationToken)(ServiceProperties^, QueueRequestOptions^, OperationContext^, CancellationToken)(ServiceProperties, QueueRequestOptions, OperationContext, CancellationToken)(ServiceProperties, QueueRequestOptions, OperationContext, CancellationToken)

Gets the properties of the blob service.

System_CAPS_pubmethodToString()()()()

(Inherited from Object.)

Provides a client-side logical representation of the Windows Azure Queue service. This client is used to configure and execute requests against the Queue service.

Remarks

The service client encapsulates the base URI for the Queue service. If the service client will be used for authenticated access, it also encapsulates the credentials for accessing the storage account.

Remarks

The service client encapsulates the endpoint or endpoints for the Queue service. If the service client will be used for authenticated access, it also encapsulates the credentials for accessing the storage account.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top