Class DataSourceParameter
Represents a parameter in a DataSource component.
Inheritance
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public class DataSourceParameter : INotifyPropertyChanged, INamedObject
Constructors
DataSourceParameter()
Initializes a new instance of the DataSourceParameter class.
Declaration
public DataSourceParameter()
DataSourceParameter(String)
Initializes a new instance of the DataSourceParameter class.
Declaration
public DataSourceParameter(string name)
Parameters
System.String
name
Specifies the name of the parameter. |
DataSourceParameter(String, Object)
Initializes a new instance of the DataSourceParameter class.
Declaration
public DataSourceParameter(string name, object value)
Parameters
System.String
name
Specifies the name of the parameter. |
System.Object
value
Specifies the value of the parameter. |
Properties
Name
Gets or sets the name of the parameter.
Declaration
public string Name { get; set; }
Property Value
System.String
|
Value
Gets or sets the value of the parameter.
Declaration
public object Value { get; set; }
Property Value
System.Object
|
Methods
NotifyPropertyChanged(String)
Declaration
protected void NotifyPropertyChanged(string propertyName)
Parameters
System.String
propertyName
|
Events
PropertyChanged
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|