NSObject.CancelPreviousPerformRequest Method
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.
CancelPreviousPerformRequest(NSObject) |
Cancels a pending time-delayed Invoke or PerformSelector. |
CancelPreviousPerformRequest(NSObject, Selector, NSObject) |
Cancels a pending time-delayed PerformSelector. |
Cancels a pending time-delayed Invoke or PerformSelector.
C#
[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
Xamarin iOS SDK 12
Product | Versions |
---|---|
Xamarin iOS SDK | 12 |
Cancels a pending time-delayed PerformSelector.
C#
[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
Applies to
Xamarin iOS SDK 12
Product | Versions |
---|---|
Xamarin iOS SDK | 12 |