NSObject.SuperHandle Property
Definition
Handle used to represent the methods in the base class for this NSObject.
public IntPtr SuperHandle { get; }
member this.SuperHandle : nativeint
Property Value
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.