ClassSelectDescriptor
Represents declarative selection.
Definition
Namespace:Telerik.Windows.Data
Assembly:Telerik.Windows.Data.dll
Syntax:
public class SelectDescriptor : DescriptorBase, ISuspendNotifications, ISelectDescriptor, INotifyPropertyChanged
Inheritance: objectInheritanceContextPropagatorDescriptorBaseSelectDescriptor
Derived Classes:
Implements:
Inherited Members
Constructors
SelectDescriptor()
Declaration
public SelectDescriptor()
Properties
ProjectedMemberName
Gets or sets the name of the projected member.
Declaration
public string ProjectedMemberName { get; set; }
Property Value
The name of the projected member.
Implements
ProjectedMemberType
Gets or sets the type of the projected member.
Declaration
public Type ProjectedMemberType { get; set; }
Property Value
The type of the projected member.
Implements
SourceMemberName
Gets or sets the name of the source member.
Declaration
public string SourceMemberName { get; set; }
Property Value
The name of the source member.
Methods
CreateSelectExpression(Expression)
Creates a predicate expression used for collection selection.
Declaration
public virtual Expression CreateSelectExpression(Expression instance)
Parameters
instance
The instance expression, which will be used for selection.
Returns
A selection expression.
Implements