TableAccountSasQueryParameters Class
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.
A TableAccountSasQueryParameters object represents the components that make up an Azure Storage Shared Access Signature's query parameters. You can construct a new instance using TableAccountSasBuilder.
For more information, Create an account SAS.
public class TableAccountSasQueryParameters
type TableAccountSasQueryParameters = class
Public Class TableAccountSasQueryParameters
- Inheritance
-
TableAccountSasQueryParameters
- Derived
Properties
ExpiresOn |
Gets the time at which the shared access signature becomes invalid. MinValue means not set. |
Identifier |
Gets the optional unique value up to 64 characters in length that correlates to an access policy specified for the blob container, queue, or share. |
IPRange |
Gets the optional IP address or a range of IP addresses from which to accept requests. When specifying a range, note that the range is inclusive. |
Permissions |
Gets the permissions associated with the shared access signature. The user is restricted to operations allowed by the permissions. This field must be omitted if it has been specified in an associated stored access policy. |
Protocol |
Optional. Specifies the protocol permitted for a request made with the shared access signature. |
Resource |
Gets the resources are accessible via the shared access signature. |
ResourceTypes |
Gets which resources are accessible via the shared access signature. |
Signature |
The signature is an HMAC computed over the string-to-sign and key using the SHA256 algorithm, and then encoded using Base64 encoding. |
StartsOn |
Gets the optional time at which the shared access signature becomes valid. If omitted, start time for this call is assumed to be the time when the storage service receives the request. MinValue means not set. |
Version |
Gets the storage service version to use to authenticate requests made with this shared access signature, and the service version to use when handling requests made with this shared access signature. |
Methods
ToString() |
Convert the SAS query parameters into a URL encoded query string. |