RuntimeReflectionExtensions.GetRuntimeBaseDefinition Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Retrieves an object that represents the specified method on the direct or indirect base class where the method was first declared.
Assembly: mscorlib (in mscorlib.dll)
'Declaration <ExtensionAttribute> _ Public Shared Function GetRuntimeBaseDefinition ( _ method As MethodInfo _ ) As MethodInfo
Parameters
- method
- Type: System.Reflection.MethodInfo
The method to retrieve information about.
Return Value
Type: System.Reflection.MethodInfoAn object that represents the specified method's initial declaration on a base class.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type MethodInfo. When you use instance method syntax to call this method, omit the first parameter.
Show: