Index
Checking If EDI Data Passed Validation
You can check whether an EDI file passed validation by the EDIValidator through the Passed property. If Passed is false the Errors property should be checked.
Example
if (validator.Passed)
{
// passed
}