ExitOptions Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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
Azure SDK for .NET