Class Integration.JobFinishedIntegrationArgs
- Assembly
- Dynamicweb.DataIntegration.dll
Provides the information about the data integration job after it was finished. Arguments passed to JobFinished notification
public class Integration.JobFinishedIntegrationArgs : NotificationArgs
- Inheritance
-
Integration.JobFinishedIntegrationArgs
- Inherited Members
Constructors
JobFinishedIntegrationArgs(bool, string, Job)
Initializes a new instance of an object.
public JobFinishedIntegrationArgs(bool jobFailed, string logFile, Job job)
Parameters
jobFailed
boolValue indicating whether the job execution failed or not.
logFile
stringJob log file path.
job
JobData integration job.
Fields
Job
Gets or sets the data integration job
public Job Job
Field Value
Properties
DestinationTables
Gets or sets the job destination tables list
public List<string> DestinationTables { get; set; }
Property Value
Exception
public Exception Exception { get; set; }
Property Value
JobFailed
Gets or sets the value indicating whether the job execution failed or not.
public bool JobFailed { get; set; }
Property Value
- bool
true
if the job execution failed; otherwise,false
.
LogFile
Gets or sets job log file path.
public string LogFile { get; set; }