DataSourceParameter
Class
Represents a parameter in a DataSource component.
Definition
Namespace:Telerik.Reporting
Assembly:Telerik.Reporting.dll
Syntax:
C#
public class DataSourceParameter
Inheritance: objectDataSourceParameter
Derived Classes:
Constructors
Initializes a new instance of the DataSourceParameter class.
C#
public DataSourceParameter()
Initializes a new instance of the DataSourceParameter class.
C#
public DataSourceParameter(string name, object value)
Specifies the name of the parameter.
valueobjectSpecifies the value of the parameter.
Initializes a new instance of the DataSourceParameter class.
C#
public DataSourceParameter(string name)
Specifies the name of the parameter.
Properties
Name
string
Gets or sets the name of the parameter.
C#
public string Name { get; set; }
Value
object
Gets or sets the value of the parameter.
C#
[TypeConverter(typeof(ObjectValueConverter))]
public object Value { get; set; }
Methods
C#
protected void NotifyPropertyChanged(string propertyName)
Events
PropertyChanged
PropertyChangedEventHandler
C#
public event PropertyChangedEventHandler PropertyChanged