共用方式為


ExitOptions Constructors

Definition

Overloads

ExitOptions()

Initializes a new instance of the ExitOptions class.

ExitOptions(Nullable<JobAction>, Nullable<DependencyAction>)

Initializes a new instance of the ExitOptions class.

ExitOptions()

Source:
ExitOptions.cs

Initializes a new instance of the ExitOptions class.

public ExitOptions ();
Public Sub New ()

Applies to

ExitOptions(Nullable<JobAction>, Nullable<DependencyAction>)

Source:
ExitOptions.cs

Initializes a new instance of the ExitOptions class.

public ExitOptions (Microsoft.Azure.Batch.Protocol.Models.JobAction? jobAction = default, Microsoft.Azure.Batch.Protocol.Models.DependencyAction? dependencyAction = default);
new Microsoft.Azure.Batch.Protocol.Models.ExitOptions : Nullable<Microsoft.Azure.Batch.Protocol.Models.JobAction> * Nullable<Microsoft.Azure.Batch.Protocol.Models.DependencyAction> -> Microsoft.Azure.Batch.Protocol.Models.ExitOptions
Public Sub New (Optional jobAction As Nullable(Of JobAction) = Nothing, Optional dependencyAction As Nullable(Of DependencyAction) = Nothing)

Parameters

jobAction
Nullable<JobAction>

An action to take on the Job containing the Task, if the Task completes with the given exit condition and the Job's onTaskFailed property is 'performExitOptionsJobAction'.

dependencyAction
Nullable<DependencyAction>

An action that the Batch service performs on Tasks that depend on this Task.

Applies to