Class SqlDataSourceParameter
Represents a parameter in a SqlDataSource component.
Inherited Members
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public class SqlDataSourceParameter : DataSourceParameter, INotifyPropertyChanged, INamedObject
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
System.String
name
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
System.String
name
Specifies the name of the parameter. |
System.Data.DbType
dataType
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
System.String
name
Specifies the name of the parameter. |
System.Data.DbType
dataType
Specifies the data type of the parameter. |
System.Object
value
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
System.Data.DbType
|