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
)
Public Function HasConjunction (
s As String,
<OutAttribute> ByRef conjunction As FilterConjunction,
<OutAttribute> ByRef clause1 As String,
<OutAttribute> ByRef clause2 As String
) As Boolean
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:
BooleanTrue if a conjunction is found, else false.
See Also