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