Article: Getting Validation Progress

Index

Getting Validation Progress

EDIValidator exposes the ProgressChanged event. This represents the progress while validating X12 EDI files. The ProgressChanged event will not fire for EDIFACT EDI files.

Example

validator.ProgressChanged += new EDIValidator.GeneralEvent(validator_ProgressChanged);
 
void validator_ProgressChanged(int progress)
{
   Console.WriteLine(progress.ToString());
}

Related Articles

Main Categories