Share via


ExtensionImage.BlockRoleUponFailure Property

 

Optional. Optional. Its value has to be 'true' or 'false' (case-sensitive) When set to 'true', the role startup will be blocked till the extension installation completes. This flag should be set to 'true' when the role cannot start without the extension being installed. If set to 'false' (default value), the role will be started without waiting for the extension installation to complete. Supported on WebRole or WorkerRole, but ignored on VmRole.

Namespace:   Microsoft.WindowsAzure.Management.Compute.Models
Assembly:  Microsoft.WindowsAzure.Management.Compute (in Microsoft.WindowsAzure.Management.Compute.dll)

Syntax

public Nullable<bool> BlockRoleUponFailure { get; set; }
public:
property Nullable<bool> BlockRoleUponFailure {
    Nullable<bool> get();
    void set(Nullable<bool> value);
}
member BlockRoleUponFailure : Nullable<bool> with get, set
Public Property BlockRoleUponFailure As Nullable(Of Boolean)

Property Value

Type: System.Nullable<Boolean>

See Also

ExtensionImage Class
Microsoft.WindowsAzure.Management.Compute.Models Namespace

Return to top