コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the JobScheduleExecutionInformation
 /// class.
 /// </summary>
 /// <param name="nextRunTime">The next time at which a job will be
 /// created under this schedule.</param>
 /// <param name="recentJob">Information about the most recent job under
 /// the job schedule.</param>
 /// <param name="endTime">The time at which the schedule ended.</param>
 public JobScheduleExecutionInformation(System.DateTime?nextRunTime = default(System.DateTime?), RecentJob recentJob = default(RecentJob), System.DateTime?endTime = default(System.DateTime?))
 {
     NextRunTime = nextRunTime;
     RecentJob   = recentJob;
     EndTime     = endTime;
     CustomInit();
 }
コード例 #2
0
 internal RecentJob(Models.RecentJob protocolObject)
 {
     this.Id  = protocolObject.Id;
     this.Url = protocolObject.Url;
 }