C# Class NLight.IO.Text.DuplicateRecordColumnException

Inheritance: System.Exception
Exibir arquivo Open project: slorion/nlight

Public Methods

Method Description
DuplicateRecordColumnException ( ) : System

Initializes a new instance of the DuplicateColumnNameException class.

DuplicateRecordColumnException ( string columnName ) : System

Initializes a new instance of the DuplicateColumnNameException class.

DuplicateRecordColumnException ( string columnName, Exception innerException ) : System

Initializes a new instance of the DuplicateColumnNameException class.

DuplicateRecordColumnException ( string columnName, string message, Exception innerException ) : System

Initializes a new instance of the DuplicateColumnNameException class.

GetObjectData ( System info, System context ) : void

When overridden in a derived class, sets the T:SerializationInfo with information about the exception.

Protected Methods

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

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

Method Details

DuplicateRecordColumnException() public method

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

DuplicateRecordColumnException() protected method

Initializes a new instance of the DuplicateColumnNameException class with serialized data.
protected DuplicateRecordColumnException ( 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

DuplicateRecordColumnException() public method

Initializes a new instance of the DuplicateColumnNameException class.
public DuplicateRecordColumnException ( string columnName ) : System
columnName string The column name.
return System

DuplicateRecordColumnException() public method

Initializes a new instance of the DuplicateColumnNameException class.
public DuplicateRecordColumnException ( string columnName, Exception innerException ) : System
columnName string The column name.
innerException System.Exception The exception that is the cause of the current exception.
return System

DuplicateRecordColumnException() public method

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

GetObjectData() public method

When overridden in a derived class, sets the T:SerializationInfo with information about the exception.
public GetObjectData ( System info, System context ) : void
info System The that holds the serialized object data about the exception being thrown.
context System The that contains contextual information about the source or destination.
return void