ClassObjectDataSourceParameter
Represents a parameter in an ObjectDataSource component.
Definition
Namespace:Telerik.Reporting
Assembly:Telerik.Reporting.dll
Syntax:
[TypeConverter(typeof(ObjectDataSourceParameterConverter))]
public class ObjectDataSourceParameter : DataSourceParameter
Inheritance: objectDataSourceParameterObjectDataSourceParameter
Inherited Members
Constructors
ObjectDataSourceParameter()
Initializes a new instance of the ObjectDataSourceParameter class.
Declaration
public ObjectDataSourceParameter()
ObjectDataSourceParameter(string)
Initializes a new instance of the ObjectDataSourceParameter class.
Declaration
public ObjectDataSourceParameter(string name)
Parameters
name
string
Specifies the name of the parameter.
ObjectDataSourceParameter(string, Type)
Initializes a new instance of the ObjectDataSourceParameter class.
Declaration
public ObjectDataSourceParameter(string name, Type dataType)
Parameters
name
string
Specifies the name of the parameter.
dataType
Type
Specifies the data type of the parameter.
ObjectDataSourceParameter(string, Type, object)
Initializes a new instance of the ObjectDataSourceParameter class.
Declaration
public ObjectDataSourceParameter(string name, Type dataType, object value)
Parameters
name
string
Specifies the name of the parameter.
dataType
Type
Specifies the data type of the parameter.
value
object
Specifies the value of the parameter.
Properties
DataType
Gets or sets the data type of the parameter.
Declaration
[TypeConverter(typeof(SystemTypeConverter))]
public Type DataType { get; set; }
Property Value
Type