共用方式為


JobAddParameter.OnTaskFailure Property

Definition

Gets or sets the action the Batch service should take when any Task in the Job fails.

[Newtonsoft.Json.JsonProperty(PropertyName="onTaskFailure")]
public Microsoft.Azure.Batch.Protocol.Models.OnTaskFailure? OnTaskFailure { get; set; }
[<Newtonsoft.Json.JsonProperty(PropertyName="onTaskFailure")>]
member this.OnTaskFailure : Nullable<Microsoft.Azure.Batch.Protocol.Models.OnTaskFailure> with get, set
Public Property OnTaskFailure As Nullable(Of OnTaskFailure)

Property Value

Attributes
Newtonsoft.Json.JsonPropertyAttribute

Remarks

A Task is considered to have failed if has a failureInfo. A failureInfo is set if the Task completes with a non-zero exit code after exhausting its retry count, or if there was an error starting the Task, for example due to a resource file download error. The default is noaction. Possible values include: 'noAction', 'performExitOptionsJobAction'

Applies to