The less than (<) operator.

Namespace:  Mindscape.LightSpeed.Querying
Assembly:  Mindscape.LightSpeed (in Mindscape.LightSpeed.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
public static QueryExpression operator <(
	PathExpression pathExpression,
	Object value
)
Visual Basic (Declaration)
Public Shared Operator < ( _
	pathExpression As PathExpression, _
	value As Object _
) As QueryExpression

Parameters

pathExpression
Type: Mindscape.LightSpeed.Querying..::.PathExpression
The path expression to evaulate as the source.
value
Type: System..::.Object
The value to evaulate against.

Return Value

An QueryExpression using the less than operator.

See Also