Class
SqlDataSourceParameter

Represents a parameter in a SqlDataSource component.

Definition

Namespace:Telerik.Reporting

Assembly:Telerik.Reporting.dll

Syntax:

cs-api-definition
[TypeConverter(typeof(SqlDataSourceParameterConverter))]
public class SqlDataSourceParameter : DataSourceParameter

Inheritance: objectDataSourceParameterSqlDataSourceParameter

Inherited Members DataSourceParameter.NotifyPropertyChanged(string)DataSourceParameter.NameDataSourceParameter.ValueDataSourceParameter.PropertyChanged

Constructors

SqlDataSourceParameter()

Initializes a new instance of the SqlDataSourceParameter class.

Declaration

cs-api-definition
public SqlDataSourceParameter()

SqlDataSourceParameter(string)

Initializes a new instance of the SqlDataSourceParameter class.

Declaration

cs-api-definition
public SqlDataSourceParameter(string name)

Parameters

name

string

Specifies the name of the parameter.

SqlDataSourceParameter(string, DbType)

Initializes a new instance of the SqlDataSourceParameter class.

Declaration

cs-api-definition
public SqlDataSourceParameter(string name, DbType dataType)

Parameters

name

string

Specifies the name of the parameter.

dataType

DbType

Specifies the data type of the parameter.

SqlDataSourceParameter(string, DbType, object)

Initializes a new instance of the SqlDataSourceParameter class.

Declaration

cs-api-definition
public SqlDataSourceParameter(string name, DbType dataType, object value)

Parameters

name

string

Specifies the name of the parameter.

dataType

DbType

Specifies the data type of the parameter.

value

object

Specifies the value of the parameter.

Properties

DbType

Gets or sets the data type of the parameter.

Declaration

cs-api-definition
public DbType DbType { get; set; }

Property Value

DbType