C# 클래스 CrownPeak.SearchG2.Query.FilterQuery

Class that wraps a single filter query operation when executing a CrownPeak.SearchG2.PlainSearch or a CrownPeak.SearchG2.Search{T} on a CrownPeak SearchG2 collection.
파일 보기 프로젝트 열기: Crownpeak/Search-Results-Examples 1 사용 예제들

공개 메소드들

메소드 설명
Equals ( object obj ) : bool

Determines whether two specified FilterQuery objects have the same value.

FilterQuery ( ) : System

Create a new FilterQuery object with an empty Field and Value.

FilterQuery ( string filterQuery ) : System

Create a new FilterQuery object with a string containing both the Field and the Value.

FilterQuery ( string field, string value ) : System

Create a new FilterQuery object with provided Field and Value.

GetHashCode ( ) : int

Returns this hash code for this instance.

ToString ( ) : string

Return a string that represents the current FilterQuery.

메소드 상세

Equals() 공개 메소드

Determines whether two specified FilterQuery objects have the same value.
public Equals ( object obj ) : bool
obj object The object to compare to this instance
리턴 bool

FilterQuery() 공개 메소드

Create a new FilterQuery object with an empty Field and Value.
public FilterQuery ( ) : System
리턴 System

FilterQuery() 공개 메소드

Create a new FilterQuery object with a string containing both the Field and the Value.
public FilterQuery ( string filterQuery ) : System
filterQuery string and in the format /// field:value.
리턴 System

FilterQuery() 공개 메소드

Create a new FilterQuery object with provided Field and Value.
public FilterQuery ( string field, string value ) : System
field string The that this applies to.
value string The that the must match.
리턴 System

GetHashCode() 공개 메소드

Returns this hash code for this instance.
public GetHashCode ( ) : int
리턴 int

ToString() 공개 메소드

Return a string that represents the current FilterQuery.
public ToString ( ) : string
리턴 string