←Select platform

CompletedTime Property

Summary

Gets or sets a value indicating the date and time a job was successfully processed.

Syntax

C#
VB
C++
[DataMemberAttribute()] 
public Nullable<DateTime> CompletedTime { get; set; } 
  
Public Property CompletedTime As Nullable(Of Date) 
public: 
property Nullable<DateTime> CompletedTime { 
   Nullable<DateTime> get(); 
   void set (    Nullable<DateTime> ); 
} 

Property Value

A System.DateTime object that represents the date and time a job was successfully processed.

Remarks

This property is only valid if the job status is JobStatus.Completed, indicating the job was successfully processed. Use the FailedTime property to obtain the date and time a job failed during processing if its status is JobStatus.Failed. A job is considered complete when the worker assembly calls SetCompletedStatus and the status is set to JobStatus.Completed.

Example

For an example, refer to IJobService.GetJobInformation.

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Services.JobProcessor.DataContracts Assembly