TableUriBuilder Class

Definition

TableUriBuilder is used to generate a Shared Access Signature (SAS) for an Azure Storage table. For more information, see https://docs.microsoft.com/en-us/rest/api/storageservices/create-account-sas.

public class TableUriBuilder
type TableUriBuilder = class
Public Class TableUriBuilder
Inheritance
TableUriBuilder

Constructors

TableUriBuilder(Uri)

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

Properties

AccountName

Gets or sets the Azure Table account name.

Host

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

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

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 Table resources.

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"

Tablename

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

Methods

ToString()

Returns the display string for the specified TableUriBuilder instance.

ToUri()

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

Applies to