共用方式為


ExitOptions.DependencyAction Property

Definition

Gets or sets an action that the Batch service performs on Tasks that depend on this Task.

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

Property Value

Attributes
Newtonsoft.Json.JsonPropertyAttribute

Remarks

Possible values are 'satisfy' (allowing dependent tasks to progress) and 'block' (dependent tasks continue to wait). Batch does not yet support cancellation of dependent tasks. Possible values include: 'satisfy', 'block'

Applies to