Trying to rotate client secrets without downtime. Docs say to create a new secret, update app, then delete old. But the .NET SDK constructor only takes one secret string.
var client = new PlatformClient(clientId, clientSecret);
If I update the secret in the portal, my running Azure Function gets 401s immediately. Is there a way to swap the secret in the SDK instance without arting the function app? Or am I missing a multi-secret parameter?