MonobjcMonobjc Documented Class Library
InitWithLeftExpressionRightExpressionCustomSelector Method (lhs, rhs, selector)
NamespacesMonobjc.FoundationNSComparisonPredicateInitWithLeftExpressionRightExpressionCustomSelector(NSExpression, NSExpression, IntPtr)

Initializes a predicate formed by combining given left and right expressions using a given selector.

Original signature is '- (id)initWithLeftExpression:(NSExpression *)lhs rightExpression:(NSExpression *)rhs customSelector:(SEL)selector'

Available in Mac OS X v10.4 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual Id InitWithLeftExpressionRightExpressionCustomSelector(
	NSExpression lhs,
	NSExpression rhs,
	IntPtr selector
)
Public Overridable Function InitWithLeftExpressionRightExpressionCustomSelector ( _
	lhs As NSExpression, _
	rhs As NSExpression, _
	selector As IntPtr _
) As Id
public:
virtual Id^ InitWithLeftExpressionRightExpressionCustomSelector(
	NSExpression^ lhs, 
	NSExpression^ rhs, 
	IntPtr selector
)
Parameters
lhs (NSExpression)
The left hand expression.
rhs (NSExpression)
The right hand expression.
selector (IntPtr)
The selector to use. The method defined by the selector must take a single argument and return a BOOL value.
Return Value
The receiver, initialized 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)