Class ParseErrorEventArgs
Provides data for the ParseError event.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
Namespace: IRM.Data
Assembly: IRM.dll
Syntax
public class ParseErrorEventArgs : EventArgs
Constructors
ParseErrorEventArgs(MalformedCsvException, ParseErrorAction)
Initializes a new instance of the ParseErrorEventArgs class.
Declaration
public ParseErrorEventArgs(MalformedCsvException error, ParseErrorAction defaultAction)
Parameters
MalformedCsvException
error
The error that occured. |
ParseErrorAction
defaultAction
The default action to take. |
Properties
Action
Gets or sets the action to take.
Declaration
public ParseErrorAction Action { get; set; }
Property Value
ParseErrorAction
The action to take. |
Error
Gets the error that occured.
Declaration
public MalformedCsvException Error { get; }
Property Value
MalformedCsvException
The error that occured. |