<PackageReference Include="Azure.Storage.Blobs" Version="12.29.1" />

Azure.Storage.Sas.BlobSasQueryParameters

public sealed class BlobSasQueryParameters : SasQueryParameters
A BlobSasQueryParameters object represents the components that make up an Azure Storage Shared Access Signature's query parameters. You can construct a new instance using BlobSasBuilder. For more information, Create a service SAS.
namespace Azure.Storage.Sas { public sealed class BlobSasQueryParameters { public string KeyObjectId { get; } public string KeyTenantId { get; } public DateTimeOffset KeyStartsOn { get; } public DateTimeOffset KeyExpiresOn { get; } public string KeyService { get; } public string KeyVersion { get; } public string KeyDelegatedUserTenantId { get; } public static BlobSasQueryParameters Empty { get; } } }