C# Class Accord.IO.MalformedCsvException

Inheritance: System.Exception
Mostra file Open project: accord-net/framework Class Usage Examples

Public Methods

Method Description
MalformedCsvException ( ) : System

Initializes a new instance of the MalformedCsvException class.

MalformedCsvException ( string message ) : System

Initializes a new instance of the MalformedCsvException class.

MalformedCsvException ( string message, Exception innerException ) : System

Initializes a new instance of the MalformedCsvException class.

MalformedCsvException ( string rawData, int currentPosition, long currentRecordIndex, int currentFieldIndex ) : System

Initializes a new instance of the MalformedCsvException class.

MalformedCsvException ( string rawData, int currentPosition, long currentRecordIndex, int currentFieldIndex, Exception innerException ) : System

Initializes a new instance of the MalformedCsvException class.

Protected Methods

Method Description
MalformedCsvException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the MalformedCsvException class with serialized data.

Private Methods

Method Description
GetObjectData ( SerializationInfo info, StreamingContext context ) : void

Method Details

MalformedCsvException() public method

Initializes a new instance of the MalformedCsvException class.
public MalformedCsvException ( ) : System
return System

MalformedCsvException() protected method

Initializes a new instance of the MalformedCsvException class with serialized data.
protected MalformedCsvException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo The that holds the serialized object data about the exception being thrown.
context System.Runtime.Serialization.StreamingContext The that contains contextual information about the source or destination.
return System

MalformedCsvException() public method

Initializes a new instance of the MalformedCsvException class.
public MalformedCsvException ( string message ) : System
message string The message that describes the error.
return System

MalformedCsvException() public method

Initializes a new instance of the MalformedCsvException class.
public MalformedCsvException ( string message, Exception innerException ) : System
message string The message that describes the error.
innerException System.Exception The exception that is the cause of the current exception.
return System

MalformedCsvException() public method

Initializes a new instance of the MalformedCsvException class.
public MalformedCsvException ( string rawData, int currentPosition, long currentRecordIndex, int currentFieldIndex ) : System
rawData string The raw data when the error occured.
currentPosition int The current position in the raw data.
currentRecordIndex long The current record index.
currentFieldIndex int The current field index.
return System

MalformedCsvException() public method

Initializes a new instance of the MalformedCsvException class.
public MalformedCsvException ( string rawData, int currentPosition, long currentRecordIndex, int currentFieldIndex, Exception innerException ) : System
rawData string The raw data when the error occured.
currentPosition int The current position in the raw data.
currentRecordIndex long The current record index.
currentFieldIndex int The current field index.
innerException System.Exception The exception that is the cause of the current exception.
return System