NSObject.CancelPreviousPerformRequest Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CancelPreviousPerformRequest(NSObject) |
Cancels a pending time-delayed Invoke or PerformSelector. |
CancelPreviousPerformRequest(NSObject, Selector, NSObject) |
Cancels a pending time-delayed PerformSelector. |
CancelPreviousPerformRequest(NSObject)
Cancels a pending time-delayed Invoke or PerformSelector.
[Foundation.Export("cancelPreviousPerformRequestsWithTarget:")]
public static void CancelPreviousPerformRequest (Foundation.NSObject aTarget);
static member CancelPreviousPerformRequest : Foundation.NSObject -> unit
Parameters
- aTarget
- NSObject
The object where the delayed invocation was performed.
- Attributes
Applies to
CancelPreviousPerformRequest(NSObject, Selector, NSObject)
Cancels a pending time-delayed PerformSelector.
[Foundation.Export("cancelPreviousPerformRequestsWithTarget:selector:object:")]
public static void CancelPreviousPerformRequest (Foundation.NSObject aTarget, ObjCRuntime.Selector selector, Foundation.NSObject argument);
static member CancelPreviousPerformRequest : Foundation.NSObject * ObjCRuntime.Selector * Foundation.NSObject -> unit
Parameters
- aTarget
- NSObject
The object where the delayed invocation was performed.
- selector
- Selector
The selector that was going to be invoked.
- Attributes