Validation Complete Event

Index

    Validation Complete Event

    EDIValidator exposes the ValidationCompleted event. This event will fire when the validation of an EDI file has completed.

    Example

    // Subscribe to the ValidationCompleted event 
    validator.ValidationCompleted += new EDIValidator.ValidationCompletedEvent(ValidationCompleted);

    void ValidationCompleted(object sender, ValidationEventsArgs e)
    {       
      Console.WriteLine(“Validation Complete”);
    }

    in EDI Validator
    Did this article answer your question?