Click or drag to resize

FilterHelperHasConjunction Method

Determines if the specified string includes a conjunction operator and, if so, returns the type of FilterConjunction and the two subclauses.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public bool HasConjunction(
	string s,
	out FilterConjunction conjunction,
	out string clause1,
	out string clause2
)

Parameters

s
Type: SystemString
The string in which to detect any conjunction.
conjunction
Type: NetQuarryFilterConjunction
The type of conjunction found.
clause1
Type: SystemString
The first subclause in the expression.
clause2
Type: SystemString
The second subclause in the expression.

Return Value

Type: Boolean
True if a conjunction is found, else false.
See Also