C# Класс Accord.IO.MalformedCsvException

Наследование: System.Exception
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Защищенные методы

Метод Описание
MalformedCsvException ( SerializationInfo info, StreamingContext context ) : System

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

Приватные методы

Метод Описание
GetObjectData ( SerializationInfo info, StreamingContext context ) : void

Описание методов

MalformedCsvException() публичный Метод

Initializes a new instance of the MalformedCsvException class.
public MalformedCsvException ( ) : System
Результат System

MalformedCsvException() защищенный Метод

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.
Результат System

MalformedCsvException() публичный Метод

Initializes a new instance of the MalformedCsvException class.
public MalformedCsvException ( string message ) : System
message string The message that describes the error.
Результат System

MalformedCsvException() публичный Метод

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.
Результат System

MalformedCsvException() публичный Метод

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.
Результат System

MalformedCsvException() публичный Метод

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.
Результат System