Accord.IO.ParseErrorEventArgs.ParseErrorEventArgs C# (CSharp) Method

ParseErrorEventArgs() public method

Initializes a new instance of the ParseErrorEventArgs class.
public ParseErrorEventArgs ( MalformedCsvException error, ParseErrorAction defaultAction ) : System
error MalformedCsvException The error that occurred.
defaultAction ParseErrorAction The default action to take.
return System
        public ParseErrorEventArgs(MalformedCsvException error, ParseErrorAction defaultAction)
            : base()
        {
            Error = error;
            Action = defaultAction;
        }
ParseErrorEventArgs