Share via


JobScheduleExecutionInformation Constructors

Definition

Overloads

JobScheduleExecutionInformation()

Initializes a new instance of the JobScheduleExecutionInformation class.

JobScheduleExecutionInformation(Nullable<DateTime>, RecentJob, Nullable<DateTime>)

Initializes a new instance of the JobScheduleExecutionInformation class.

JobScheduleExecutionInformation()

Source:
JobScheduleExecutionInformation.cs

Initializes a new instance of the JobScheduleExecutionInformation class.

public JobScheduleExecutionInformation ();
Public Sub New ()

Applies to

JobScheduleExecutionInformation(Nullable<DateTime>, RecentJob, Nullable<DateTime>)

Source:
JobScheduleExecutionInformation.cs

Initializes a new instance of the JobScheduleExecutionInformation class.

public JobScheduleExecutionInformation (DateTime? nextRunTime = default, Microsoft.Azure.Batch.Protocol.Models.RecentJob recentJob = default, DateTime? endTime = default);
new Microsoft.Azure.Batch.Protocol.Models.JobScheduleExecutionInformation : Nullable<DateTime> * Microsoft.Azure.Batch.Protocol.Models.RecentJob * Nullable<DateTime> -> Microsoft.Azure.Batch.Protocol.Models.JobScheduleExecutionInformation
Public Sub New (Optional nextRunTime As Nullable(Of DateTime) = Nothing, Optional recentJob As RecentJob = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing)

Parameters

nextRunTime
Nullable<DateTime>

The next time at which a Job will be created under this schedule.

recentJob
RecentJob

Information about the most recent Job under the Job Schedule.

endTime
Nullable<DateTime>

The time at which the schedule ended.

Applies to