TableSasBuilder Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
TableSasBuilder() |
Initializes an instance of a TableSasBuilder with no details set. At minimum, additional properties must be set to create a valid SaS. These include setting the TableName, permissions, and an expiry. Permissions and expiry can also be specified in a shared access policy, which can be selected by specifying the name of the policy on the Identifier property. |
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()
- Source:
- TableSasBuilder.cs
Initializes an instance of a TableSasBuilder with no details set. At minimum, additional properties must be set to create a valid SaS. These include setting the TableName, permissions, and an expiry. Permissions and expiry can also be specified in a shared access policy, which can be selected by specifying the name of the policy on the Identifier property.
public TableSasBuilder ();
Public Sub New ()
Applies to
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.