MonobjcMonobjc Documented Class Library
PredicateWithLeftExpressionRightExpressionCustomSelector Method (lhs, rhs, selector)
NamespacesMonobjc.FoundationNSComparisonPredicatePredicateWithLeftExpressionRightExpressionCustomSelector(NSExpression, NSExpression, IntPtr)

Returns a new predicate formed by combining the left and right expressions using a given selector.

Original signature is '+ (NSPredicate *)predicateWithLeftExpression:(NSExpression *)lhs rightExpression:(NSExpression *)rhs customSelector:(SEL)selector'

Available in Mac OS X v10.4 and later.

Declaration Syntax
C#Visual BasicVisual C++
public static NSPredicate PredicateWithLeftExpressionRightExpressionCustomSelector(
	NSExpression lhs,
	NSExpression rhs,
	IntPtr selector
)
Public Shared Function PredicateWithLeftExpressionRightExpressionCustomSelector ( _
	lhs As NSExpression, _
	rhs As NSExpression, _
	selector As IntPtr _
) As NSPredicate
public:
static NSPredicate^ PredicateWithLeftExpressionRightExpressionCustomSelector(
	NSExpression^ lhs, 
	NSExpression^ rhs, 
	IntPtr selector
)
Parameters
lhs (NSExpression)
The left hand side expression.
rhs (NSExpression)
The right hand side expression.
selector (IntPtr)
The selector to use for comparison. The method defined by the selector must take a single argument and return a BOOL value.
Return Value
A new predicate formed by combining the left and right expressions using selector.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)