MonobjcMonobjc Documented Class Library
DequeueNotificationsMatchingCoalesceMask Method (notification, coalesceMask)
NamespacesMonobjc.FoundationNSNotificationQueueDequeueNotificationsMatchingCoalesceMask(NSNotification, NSUInteger)

Removes all notifications from the queue that match a provided notification using provided matching criteria.

Original signature is '- (void)dequeueNotificationsMatching:(NSNotification *)notification coalesceMask:(NSUInteger)coalesceMask'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual void DequeueNotificationsMatchingCoalesceMask(
	NSNotification notification,
	NSUInteger coalesceMask
)
Public Overridable Sub DequeueNotificationsMatchingCoalesceMask ( _
	notification As NSNotification, _
	coalesceMask As NSUInteger _
)
public:
virtual void DequeueNotificationsMatchingCoalesceMask(
	NSNotification^ notification, 
	NSUInteger coalesceMask
)
Parameters
notification (NSNotification)
The notification used for matching notifications to remove from the notification queue.
coalesceMask (NSUInteger)
A mask indicating what criteria to use when matching attributes of notification to attributes of notifications in the queue. The mask is created by combining any of the constants NSNotificationNoCoalescing, NSNotificationCoalescingOnName, and NSNotificationCoalescingOnSender.
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)