C# 클래스 Hiro.TypeFilterPredicateExtensions

A helper class that makes easy to build aggregated type predicate expressions.
파일 보기 프로젝트 열기: philiplaureano/Hiro

공개 메소드들

메소드 설명
And ( bool>.this condition, bool>.Func otherCondition ) : bool>.Func

Combines (logically ANDs) two predicate expressions together.

Not ( bool>.this condition ) : bool>.Func

Negates the given <condition.

Or ( bool>.this condition, bool>.Func otherCondition ) : bool>.Func

Combines (logically ORs) two predicate expressions together.

메소드 상세

And() 공개 정적인 메소드

Combines (logically ANDs) two predicate expressions together.
public static And ( bool>.this condition, bool>.Func otherCondition ) : bool>.Func
condition bool>.this The first condition.
otherCondition bool>.Func The second condition.
리턴 bool>.Func

Not() 공개 정적인 메소드

Negates the given <condition.
public static Not ( bool>.this condition ) : bool>.Func
condition bool>.this The predicate that will be logically negated
리턴 bool>.Func

Or() 공개 정적인 메소드

Combines (logically ORs) two predicate expressions together.
public static Or ( bool>.this condition, bool>.Func otherCondition ) : bool>.Func
condition bool>.this The first condition.
otherCondition bool>.Func The second condition.
리턴 bool>.Func