MonobjcMonobjc Documented Class Library
NSCompoundPredicate Constructor (type, subpredicates)
NamespacesMonobjc.FoundationNSCompoundPredicateNSCompoundPredicate(NSCompoundPredicateType, NSArray)

Returns the receiver initialized to a given type using predicates from a given array.

Original signature is '- (id)initWithType:(NSCompoundPredicateType)type subpredicates:(NSArray *)subpredicates'

Available in Mac OS X v10.4 and later.

Declaration Syntax
C#Visual BasicVisual C++
public NSCompoundPredicate(
	NSCompoundPredicateType type,
	NSArray subpredicates
)
Public Sub New ( _
	type As NSCompoundPredicateType, _
	subpredicates As NSArray _
)
public:
NSCompoundPredicate(
	NSCompoundPredicateType type, 
	NSArray^ subpredicates
)
Parameters
type (NSCompoundPredicateType)
The type of the new predicate.
subpredicates (NSArray)
An array of NSPredicate objects.
Return Value
The receiver initialized with its type set to type and subpredicates array to subpredicates.
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)