Class QueryParameter
Defines parameters for domain service queries used by RadDomainDataSource.
Inheritance
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.DomainServices.dll
Syntax
public class QueryParameter : DependencyObject, INotifyPropertyChanged
Constructors
QueryParameter()
Declaration
public QueryParameter()
Fields
ParameterNameProperty
Identifies the ParameterName dependency property.
Declaration
public static readonly DependencyProperty ParameterNameProperty
Field Value
System.Windows.DependencyProperty
|
ValueProperty
Identifies the Value dependency property.
Declaration
public static readonly DependencyProperty ValueProperty
Field Value
System.Windows.DependencyProperty
|
Properties
ParameterName
Gets or sets the name of the query parameter.
Declaration
public string ParameterName { get; set; }
Property Value
System.String
The name of the query parameter. |
Value
Gets or sets the value.
Declaration
public object Value { get; set; }
Property Value
System.Object
The value. |
Methods
OnPropertyChanged(String)
Raises this object's PropertyChanged event.
Declaration
protected virtual void OnPropertyChanged(string propertyName)
Parameters
System.String
propertyName
The property that has a new value. |
Events
PropertyChanged
Raised when a property on this object has a new value.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|