C# 클래스 LumenWorks.Framework.IO.Csv.MalformedCsvException

Represents the exception that is thrown when a CSV file is malformed.
상속: System.Exception
파일 보기 프로젝트 열기: phatcher/CsvReader 1 사용 예제들

공개 메소드들

메소드 설명
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() 공개 메소드

Initializes a new instance of the MalformedCsvException class.
public MalformedCsvException ( ) : System
리턴 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