MonobjcMonobjc Documented Class Library
WaitUntilDate Method (limit)
NamespacesMonobjc.FoundationNSConditionWaitUntilDate(NSDate)

Blocks the current thread until the condition is signaled or the specified time limit is reached.

Original signature is '- (BOOL)waitUntilDate:(NSDate *)limit'

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual bool WaitUntilDate(
	NSDate limit
)
Public Overridable Function WaitUntilDate ( _
	limit As NSDate _
) As Boolean
public:
virtual bool WaitUntilDate(
	NSDate^ limit
)
Parameters
limit (NSDate)
The time at which to wake up the thread if the condition has not been signaled.
Return Value
YES if the condition was signaled; otherwise, NO if the time limit was reached.
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)