无法在运行时从程序集中获取Method

时间:2018-05-29 14:45:22

标签: c# reflection runtime .net-assembly

我正在使用以下代码在运行时加载程序集,然后获取对特定方法的引用,并显然在最后执行它:

var assemblyLoaded = Assembly.LoadFile(absolutePath);
var type = assemblyLoaded.GetType("CreateContactPlugin.Plugin");

var instance = Activator.CreateInstance(type);

var methodInfo = type.GetMethod("Execute", new Type[] { typeof(System.String)});
if (methodInfo == null)
{
    throw new Exception("No such method exists.");
}

这是我正在调用的程序集

namespace CreateContactPlugin
{
   public class Plugin
   {

    static bool Execute(string contactName){
        bool contactCreated = false;
        if (!String.IsNullOrWhiteSpace(contactName))
        {
            //process
        }
        return contactCreated;
    }

  }
 }

我可以成功加载程序集,类型。当我突出显示类型变量时,我看到DeclaredMethods数组中列出的方法。但是当我尝试获取Method时,它总是返回null。

有人看到我在这里做错了吗?

2 个答案:

答案 0 :(得分:2)

这里有几个问题。首先,Execute方法是static而不是public,因此您需要指定正确的绑定标记才能获得它。

var methodInfo = type.GetMethod("Execute", BindingFlags.Static | BindingFlags.NonPublic);

然而,使用较少反射和强类型的替代方案(在我看来更可取)将使您的插件类实现一个通用接口,这样您就可以强烈键入instance对象。首先创建一个包含相关接口的类库,例如:

public interface IContactPlugin
{
    bool Execute(string contactName);
}

现在你的插件也可以引用相同的库并成为:

namespace CreateContactPlugin
{
    public class Plugin : IContactPlugin
    {
        public bool Execute(string contactName)
        {
            //snip
        }
    }
}

现在你的调用代码就是这样:

var assemblyLoaded = Assembly.LoadFile(absolutePath);
var type = assemblyLoaded.GetType("CreateContactPlugin.Plugin");

var instance = Activator.CreateInstance(type) as IContactPlugin;

if (instance == null)
{
    //That type wasn't an IContactPlugin, do something here...
}

instance.Execute("name of contact");

答案 1 :(得分:0)

问题是"静态"的

static bool Execute(string contactName)

把它作为

public bool Execute(string contactName)