TableSasBuilder Constructors

Definition

Overloads

TableSasBuilder(Uri)

Initializes a new instance of TableSasBuilder based on an existing Uri containing a shared access signature.

TableSasBuilder(String, TableSasPermissions, DateTimeOffset)

Initializes an instance of a TableSasBuilder.

TableSasBuilder(String, String, DateTimeOffset)

Initializes an instance of a TableSasBuilder.

TableSasBuilder(Uri)

Source:
TableSasBuilder.cs

Initializes a new instance of TableSasBuilder based on an existing Uri containing a shared access signature.

public TableSasBuilder (Uri sasUri);
new Azure.Data.Tables.Sas.TableSasBuilder : Uri -> Azure.Data.Tables.Sas.TableSasBuilder
Public Sub New (sasUri As Uri)

Parameters

sasUri
Uri

The Uri containing a SAS token to parse.

Applies to

TableSasBuilder(String, TableSasPermissions, DateTimeOffset)

Source:
TableSasBuilder.cs

Initializes an instance of a TableSasBuilder.

public TableSasBuilder (string tableName, Azure.Data.Tables.Sas.TableSasPermissions permissions, DateTimeOffset expiresOn);
new Azure.Data.Tables.Sas.TableSasBuilder : string * Azure.Data.Tables.Sas.TableSasPermissions * DateTimeOffset -> Azure.Data.Tables.Sas.TableSasBuilder
Public Sub New (tableName As String, permissions As TableSasPermissions, expiresOn As DateTimeOffset)

Parameters

tableName
String

The name of the table being made accessible with the shared access signature.

permissions
TableSasPermissions

The permissions associated with the shared access signature.

expiresOn
DateTimeOffset

The time at which the shared access signature becomes invalid.

Applies to

TableSasBuilder(String, String, DateTimeOffset)

Source:
TableSasBuilder.cs

Initializes an instance of a TableSasBuilder.

public TableSasBuilder (string tableName, string rawPermissions, DateTimeOffset expiresOn);
new Azure.Data.Tables.Sas.TableSasBuilder : string * string * DateTimeOffset -> Azure.Data.Tables.Sas.TableSasBuilder
Public Sub New (tableName As String, rawPermissions As String, expiresOn As DateTimeOffset)

Parameters

tableName
String

The name of the table being made accessible with the shared access signature.

rawPermissions
String

The permissions associated with the shared access signature. This string should contain one or more of the following permission characters in this order: "raud".

expiresOn
DateTimeOffset

The time at which the shared access signature becomes invalid.

Applies to