ClassSqlDataSourceParameter
Represents a parameter in a SqlDataSource component.
Definition
Namespace:Telerik.Reporting
Assembly:Telerik.Reporting.dll
Syntax:
[TypeConverter(typeof(SqlDataSourceParameterConverter))]
public class SqlDataSourceParameter : DataSourceParameter
Inheritance: objectDataSourceParameterSqlDataSourceParameter
Inherited Members
Constructors
SqlDataSourceParameter()
Initializes a new instance of the SqlDataSourceParameter class.
Declaration
public SqlDataSourceParameter()
SqlDataSourceParameter(string)
Initializes a new instance of the SqlDataSourceParameter class.
Declaration
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
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
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
public DbType DbType { get; set; }
Property Value
DbType