Represents a parameter in a SqlDataSource component.
Definition
Namespace:Telerik.Reporting
Assembly:Telerik.Reporting.dll
Syntax:
C#
[TypeConverter(typeof(SqlDataSourceParameterConverter))]
public class SqlDataSourceParameter : DataSourceParameter
Inheritance: objectDataSourceParameterSqlDataSourceParameter
Inherited Members
Constructors
Initializes a new instance of the SqlDataSourceParameter class.
C#
public SqlDataSourceParameter()
Initializes a new instance of the SqlDataSourceParameter class.
C#
public SqlDataSourceParameter(string name, DbType dataType, object value)
Specifies the name of the parameter.
dataTypeDbTypeSpecifies the data type of the parameter.
valueobjectSpecifies the value of the parameter.
Initializes a new instance of the SqlDataSourceParameter class.
C#
public SqlDataSourceParameter(string name, DbType dataType)
Specifies the name of the parameter.
dataTypeDbTypeSpecifies the data type of the parameter.
Initializes a new instance of the SqlDataSourceParameter class.
C#
public SqlDataSourceParameter(string name)
Specifies the name of the parameter.
Properties
DbType
DbType
Gets or sets the data type of the parameter.
C#
public DbType DbType { get; set; }