MonobjcMonobjc Documented Class Library
InstanceMethodSignatureForSelector Method (aSelector)
NamespacesMonobjc.FoundationNSObjectInstanceMethodSignatureForSelector(IntPtr)

Returns an NSMethodSignature object that contains a description of the instance method identified by a given selector.

Original signature is '+ (NSMethodSignature *)instanceMethodSignatureForSelector:(SEL)aSelector'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public static NSMethodSignature InstanceMethodSignatureForSelector(
	IntPtr aSelector
)
Public Shared Function InstanceMethodSignatureForSelector ( _
	aSelector As IntPtr _
) As NSMethodSignature
public:
static NSMethodSignature^ InstanceMethodSignatureForSelector(
	IntPtr aSelector
)
Parameters
aSelector (IntPtr)
A selector that identifies the method for which to return the implementation address.
Return Value
An NSMethodSignature object that contains a description of the instance method identified by aSelector, or nil if the method can’t be found.
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)