Table of Contents

Class Integration.JobFinishedIntegrationArgs

Namespace
Dynamicweb.DataIntegration.Integration.Notifications
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 bool

Value indicating whether the job execution failed or not.

logFile string

Job log file path.

job Job

Data integration job.

Fields

Job

Gets or sets the data integration job

public Job Job

Field Value

Job

Properties

DestinationTables

Gets or sets the job destination tables list

public List<string> DestinationTables { get; set; }

Property Value

List<string>

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; }

Property Value

string
To top