C# 클래스 Telerik.Web.Mvc.FilterDescriptorBase

Base class for all IFilterDescriptor used for handling the logic for property changed notifications.
상속: IFilterDescriptor
파일 보기 프로젝트 열기: juanplopes/simple-telerik

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
CreateFilterExpression ( Expression instance ) : Expression

Creates a filter expression by delegating its creation to CreateFilterExpression(System.Linq.Expressions.ParameterExpression), if instance is ParameterExpression, otherwise throws ArgumentException

보호된 메소드들

메소드 설명
CreateFilterExpression ( System.Linq.Expressions.ParameterExpression parameterExpression ) : Expression

Creates a predicate filter expression used for collection filtering.

메소드 상세

CreateFilterExpression() 공개 메소드

Creates a filter expression by delegating its creation to CreateFilterExpression(System.Linq.Expressions.ParameterExpression), if instance is ParameterExpression, otherwise throws ArgumentException
Parameter should be of type
public CreateFilterExpression ( Expression instance ) : Expression
instance System.Linq.Expressions.Expression The instance expression, which will be used for filtering.
리턴 System.Linq.Expressions.Expression

CreateFilterExpression() 보호된 메소드

Creates a predicate filter expression used for collection filtering.
protected CreateFilterExpression ( System.Linq.Expressions.ParameterExpression parameterExpression ) : Expression
parameterExpression System.Linq.Expressions.ParameterExpression The parameter expression, which will be used for filtering.
리턴 System.Linq.Expressions.Expression