Skip to main content
A newer version of this page is available. .

StoredProcParamTypeValidationException(String, String, String) Constructor

Initializes a new instance of the StoredProcParamTypeValidationException class with the specified settings.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v18.2.dll

Declaration

public StoredProcParamTypeValidationException(
    string actualType,
    string expectedType,
    string parameterName
)

Parameters

Name Type Description
actualType String

A String value, specifying the actual parameter type. This value is assigned to the StoredProcParamTypeValidationException.Actual property.

expectedType String

A String value, specifying the expected parameter type. This value is assigned to the StoredProcParamTypeValidationException.Expected property.

parameterName String

A String value, specifying the parameter name. This value is assigned to the StoredProcParamTypeValidationException.ParameterName property.

See Also