New to Telerik ReportingStart a free 30-day trial

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 DataSourceParameter.NotifyPropertyChanged(string)DataSourceParameter.NameDataSourceParameter.ValueDataSourceParameter.PropertyChanged

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)
Parameters:namestring

Specifies the name of the parameter.

dataTypeDbType

Specifies the data type of the parameter.

valueobject

Specifies the value of the parameter.

Initializes a new instance of the SqlDataSourceParameter class.

C#
public SqlDataSourceParameter(string name, DbType dataType)
Parameters:namestring

Specifies the name of the parameter.

dataTypeDbType

Specifies the data type of the parameter.

Initializes a new instance of the SqlDataSourceParameter class.

C#
public SqlDataSourceParameter(string name)
Parameters:namestring

Specifies the name of the parameter.

Properties

DbType

DbType

Gets or sets the data type of the parameter.

C#
public DbType DbType { get; set; }