C# Class Accord.IO.MissingFieldCsvException

Inheritance: MalformedCsvException
Afficher le fichier Open project: accord-net/framework

Méthodes publiques

Méthode Description
MissingFieldCsvException ( ) : System

Initializes a new instance of the MissingFieldCsvException class.

MissingFieldCsvException ( string message ) : System

Initializes a new instance of the MissingFieldCsvException class.

MissingFieldCsvException ( string message, Exception innerException ) : System

Initializes a new instance of the MissingFieldCsvException class.

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

Initializes a new instance of the MissingFieldCsvException class.

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

Initializes a new instance of the MissingFieldCsvException class.

Méthodes protégées

Méthode Description
MissingFieldCsvException ( SerializationInfo info, StreamingContext context ) : System

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

Method Details

MissingFieldCsvException() public méthode

Initializes a new instance of the MissingFieldCsvException class.
public MissingFieldCsvException ( ) : System
Résultat System

MissingFieldCsvException() protected méthode

Initializes a new instance of the MissingFieldCsvException class with serialized data.
protected MissingFieldCsvException ( 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.
Résultat System

MissingFieldCsvException() public méthode

Initializes a new instance of the MissingFieldCsvException class.
public MissingFieldCsvException ( string message ) : System
message string The message that describes the error.
Résultat System

MissingFieldCsvException() public méthode

Initializes a new instance of the MissingFieldCsvException class.
public MissingFieldCsvException ( 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.
Résultat System

MissingFieldCsvException() public méthode

Initializes a new instance of the MissingFieldCsvException class.
public MissingFieldCsvException ( 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.
Résultat System

MissingFieldCsvException() public méthode

Initializes a new instance of the MissingFieldCsvException class.
public MissingFieldCsvException ( 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.
Résultat System