Class ObjectDataSourceParameter
Represents a parameter in an ObjectDataSource component.
Inherited Members
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public class ObjectDataSourceParameter : DataSourceParameter, INotifyPropertyChanged, INamedObject
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
System.String
name
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
System.String
name
Specifies the name of the parameter. |
System.Type
dataType
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
System.String
name
Specifies the name of the parameter. |
System.Type
dataType
Specifies the data type of the parameter. |
System.Object
value
Specifies the value of the parameter. |
Properties
DataType
Gets or sets the data type of the parameter.
Declaration
public Type DataType { get; set; }
Property Value
System.Type
|