C# 클래스 Dibware.StoredProcedureFramework.Exceptions.SqlParameterOutOfRangeException

상속: System.Exception
파일 보기 프로젝트 열기: dibley1973/StoredProcedureFramework

공개 메소드들

메소드 설명
SqlParameterOutOfRangeException ( SqlParameter parameter, int actualPrecision, int actualScale ) : System

Initializes a new instance of the SqlParameterOutOfRangeException class.

SqlParameterOutOfRangeException ( string parameterName, int expectedSize, int actualSize ) : System

Initializes a new instance of the SqlParameterOutOfRangeException class.

비공개 메소드들

메소드 설명
CreateMessage ( string parameterName, int expectedSize, int actualSize ) : string

Creates the message.

CreateMessage ( string parameterName, int expectedPrecision, int expectedScale, int actualPrecision, int actualScale ) : string

Creates the message containing name and expected and actual types.

SqlParameterOutOfRangeException ( string parameterName, int expectedPrecision, int expectedScale, int actualPrecision, int actualScale ) : System

Initializes a new instance of the SqlParameterOutOfRangeException class.

메소드 상세

SqlParameterOutOfRangeException() 공개 메소드

Initializes a new instance of the SqlParameterOutOfRangeException class.
public SqlParameterOutOfRangeException ( SqlParameter parameter, int actualPrecision, int actualScale ) : System
parameter System.Data.SqlClient.SqlParameter The Sqlparemeter that was out of range.
actualPrecision int The actual precision.
actualScale int The actual scale.
리턴 System

SqlParameterOutOfRangeException() 공개 메소드

Initializes a new instance of the SqlParameterOutOfRangeException class.
public SqlParameterOutOfRangeException ( string parameterName, int expectedSize, int actualSize ) : System
parameterName string Name of the parameter.
expectedSize int The expected size.
actualSize int The actual size.
리턴 System