QueueUriBuilder Class

Definition

The QueueUriBuilder class provides a convenient way to modify the contents of a Uri instance to point to different Azure Storage resources like an account, queue, or message.

For more information, see Addressing Queue Service Resources.

public class QueueUriBuilder
type QueueUriBuilder = class
Public Class QueueUriBuilder
Inheritance
QueueUriBuilder

Constructors

QueueUriBuilder(Uri)

Initializes a new instance of the QueueUriBuilder class with the specified Uri.

Properties

AccountName

Gets or sets the Azure Storage account name.

Host

Gets or sets the Domain Name System (DNS) host name or IP address of a server.

Example: "account.queue.core.windows.net"

MessageId

Gets or sets the ID of a message in a queue. The value defaults to Empty if not present in the Uri.

Messages

Gets or sets whether to reference a queue's messages.

Port

Gets or sets the port number of the URI.

Query

Gets or sets any query information included in the URI that's not relevant to addressing Azure storage resources.

QueueName

Gets or sets the name of a Azure Storage Queue. The value defaults to Empty if not present in the Uri.

Sas

Gets or sets the Shared Access Signature query parameters, or null if not present in the Uri.

Scheme

Gets or sets the scheme name of the URI. Example: "https"

Methods

ToString()

Returns the display string for the specified QueueUriBuilder instance.

ToUri()

Returns the Uri constructed from the QueueUriBuilder's fields. The Query property contains the SAS and additional query parameters.

Applies to