C# 클래스 Net.Http.WebApi.OData.AbstractFilterBinder

A base class for binding a filter expression tree.
파일 보기 프로젝트 열기: TrevorPilley/Net.Http.WebApi.OData

보호된 메소드들

메소드 설명
Bind ( QueryNode node ) : void

Binds the specified QueryNode.

BindBinaryOperatorNode ( BinaryOperatorNode binaryOperatorNode ) : void

Binds the specified BinaryOperatorNode.

BindConstantNode ( ConstantNode constantNode ) : void

Binds the specified ConstantNode.

BindSingleValueFunctionCallNode ( SingleValueFunctionCallNode singleValueFunctionCallNode ) : void

Binds the specified SingleValueFunctionCallNode.

BindSingleValuePropertyAccessNode ( SingleValuePropertyAccessNode singleValuePropertyAccessNode ) : void

Binds the specified SingleValuePropertyAccessNode.

BindUnaryOperatorNode ( UnaryOperatorNode unaryOperatorNode ) : void

Binds the specified UnaryOperatorNode.

메소드 상세

Bind() 보호된 메소드

Binds the specified QueryNode.
Thrown if the node is not supported.
protected Bind ( QueryNode node ) : void
node Net.Http.WebApi.OData.Query.Expressions.QueryNode The to bind.
리턴 void

BindBinaryOperatorNode() 보호된 추상적인 메소드

Binds the specified BinaryOperatorNode.
protected abstract BindBinaryOperatorNode ( BinaryOperatorNode binaryOperatorNode ) : void
binaryOperatorNode Net.Http.WebApi.OData.Query.Expressions.BinaryOperatorNode The to bind.
리턴 void

BindConstantNode() 보호된 추상적인 메소드

Binds the specified ConstantNode.
protected abstract BindConstantNode ( ConstantNode constantNode ) : void
constantNode Net.Http.WebApi.OData.Query.Expressions.ConstantNode The to bind.
리턴 void

BindSingleValueFunctionCallNode() 보호된 추상적인 메소드

Binds the specified SingleValueFunctionCallNode.
protected abstract BindSingleValueFunctionCallNode ( SingleValueFunctionCallNode singleValueFunctionCallNode ) : void
singleValueFunctionCallNode Net.Http.WebApi.OData.Query.Expressions.SingleValueFunctionCallNode The to bind.
리턴 void

BindSingleValuePropertyAccessNode() 보호된 추상적인 메소드

Binds the specified SingleValuePropertyAccessNode.
protected abstract BindSingleValuePropertyAccessNode ( SingleValuePropertyAccessNode singleValuePropertyAccessNode ) : void
singleValuePropertyAccessNode Net.Http.WebApi.OData.Query.Expressions.SingleValuePropertyAccessNode The to bind.
리턴 void

BindUnaryOperatorNode() 보호된 추상적인 메소드

Binds the specified UnaryOperatorNode.
protected abstract BindUnaryOperatorNode ( UnaryOperatorNode unaryOperatorNode ) : void
unaryOperatorNode Net.Http.WebApi.OData.Query.Expressions.UnaryOperatorNode The to bind.
리턴 void