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
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)
Specifies the name of the parameter.
dataTypeTypeSpecifies the data type of the parameter.
valueobjectSpecifies the value of the parameter.
Initializes a new instance of the ObjectDataSourceParameter class.
C#
public ObjectDataSourceParameter(string name, Type dataType)
Specifies the name of the parameter.
dataTypeTypeSpecifies the data type of the parameter.
Initializes a new instance of the ObjectDataSourceParameter class.
C#
public ObjectDataSourceParameter(string name)
Specifies the name of the parameter.
Properties
DataType
Type
Gets or sets the data type of the parameter.
C#
[TypeConverter(typeof(SystemTypeConverter))]
public Type DataType { get; set; }