Azure.AzureSasCredential
Shared access signature credential used to authenticate to an Azure Service.
It provides the ability to update the shared access signature without creating a new client.
namespace Azure
{
public class AzureSasCredential
{
public string Signature { get; }
public AzureSasCredential(string signature);
public void Update(string signature);
}
}