WithAsyncDeployment(Config<bool>) Method
Configures Kudu to use asynchronous deployment (the default is true).
Namespace
Statiq.Web.Azure
Containing Type
DeployAppService

Syntax

public DeployAppService WithAsyncDeployment(Config<bool> isAsync)

Remarks

See https://github.com/projectkudu/kudu/wiki/Deploying-from-a-zip-file-or-url#asynchronous-zip-deployment for more information about Kudu and asynchronous deployment. When using asynchronous deployment, the module will poll for completion every 10 seconds until the WithTimeout(Config<TimeSpan>) is reached.

Parameters

Name Type Description
isAsync Config<bool> true to use asynchronous deployment, false otherwise.

Return Value

Type Description
DeployAppService The current module instance.