C# 클래스 Accord.IO.MalformedCsvException

상속: System.Exception
파일 보기 프로젝트 열기: accord-net/framework 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 ( 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