NSObject.SuperHandle Property
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.
Handle used to represent the methods in the base class for this NSObject.
public IntPtr SuperHandle { get; }
member this.SuperHandle : nativeint
Property Value
nativeint
An opaque pointer, represents an Objective-C objc_super object pointing to our base class.
Remarks
This property is used to access members of a base class. This is typically used when you call any of the Messaging methods to invoke methods that were implemented in your base class, instead of invoking the implementation in the current class.