New to Telerik ReportingStart a free 30-day trial

Represents a parameter in an ObjectDataSource component.

Definition

Namespace:Telerik.Reporting

Assembly:Telerik.Reporting.dll

Syntax:

C#
[TypeConverter(typeof(ObjectDataSourceParameterConverter))]
public class ObjectDataSourceParameter : DataSourceParameter

Inheritance: objectDataSourceParameterObjectDataSourceParameter

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

Constructors

Initializes a new instance of the ObjectDataSourceParameter class.

C#
public ObjectDataSourceParameter()

Initializes a new instance of the ObjectDataSourceParameter class.

C#
public ObjectDataSourceParameter(string name, Type dataType, object value)
Parameters:namestring

Specifies the name of the parameter.

dataTypeType

Specifies the data type of the parameter.

valueobject

Specifies the value of the parameter.

Initializes a new instance of the ObjectDataSourceParameter class.

C#
public ObjectDataSourceParameter(string name, Type dataType)
Parameters:namestring

Specifies the name of the parameter.

dataTypeType

Specifies the data type of the parameter.

Initializes a new instance of the ObjectDataSourceParameter class.

C#
public ObjectDataSourceParameter(string name)
Parameters:namestring

Specifies the name of the parameter.

Properties

Gets or sets the data type of the parameter.

C#
[TypeConverter(typeof(SystemTypeConverter))]
public Type DataType { get; set; }