Hmmm - not sure about the correct way, but you can do it by looping through all the interfaces on your type, and then searching the interfaces for the method. Not sure if you can do it directly without the looping through the interfaces, as you're kinda stuck without GetBaseDefinition().
For my interface with a single method (MyMethod) and my type (MyClass) which implements this method I can use this:
MethodInfo interfaceMethodInfo = typeof(IMyInterface).GetMethod("MyMethod");
MethodInfo classMethodInfo = null;
Type[] interfaces = typeof(MyClass).GetInterfaces();
foreach (Type iface in interfaces)
{
MethodInfo[] methods = iface.GetMethods();
foreach (MethodInfo method in methods)
{
if (method.Equals(interfaceMethodInfo))
{
classMethodInfo = method;
break;
}
}
}
You'd have to check that the MethodInfo.Equals works if the two methods have different names. I didn't even know that was possible, probably cos I'm a C#'er