It is possible to set an Azure Website to "Always On" using the Azure Portal.
I'm trying to achieve the same using the Azure SDK
var config = new WebSiteUpdateConfigurationParameters
{
WebSocketsEnabled = true,
AppSettings = appSettings,
ConnectionStrings = connectionStrings,
Use32BitWorkerProcess = false,
????
};
await client.WebSites.UpdateConfigurationAsync(webSpaceName, sitename, config);
Is there any workaround for this or am I missing something?