Asp.net Core 反射加载dll

  1. 定义一个类库,定义接口
csharp 复制代码
namespace Plugin
{
    public interface IPlugin
    {
        void EllisTest();
    }
}
  1. 定义另外一个类库,引用上面的类库,实现接口
csharp 复制代码
using Plugin;

namespace UserCustom
{
    public class Custom : IPlugin
    {
        public  void EllisTest()
        {
            Console.WriteLine("哈哈,今天这个天气挺好的");
        }
    }
}
  1. 定义API,使用assemble加载dll
csharp 复制代码
[HttpGet(Name = "test")]
public IActionResult DirectLoad()
{
    Assembly assembly = Assembly.LoadFrom("C:\\Users\\84977\\Desktop\\UserCustom.dll");

    var pluginType = assembly.GetTypes().FirstOrDefault(t => typeof(IPlugin).IsAssignableFrom(t) && !t.IsInterface && !t.IsAbstract);
    if (pluginType != null)
    {
        IPlugin plugin = (IPlugin)Activator.CreateInstance(pluginType);

        plugin.EllisTest();
    }
    return Ok();
}

[HttpGet(Name = "GetWeatherForecast")]
public IEnumerable<WeatherForecast> Get()
{
    string pluginPath = "C:\\Users\\84977\\Desktop\\UserCustom.dll";
    var pluginLoader = new PluginLoader();
    pluginLoader.LoadAndExecutePlugin(pluginPath);
    return Enumerable.Range(1, 5).Select(index => new WeatherForecast
    {
        Date = DateTime.Now.AddDays(index),
        TemperatureC = Random.Shared.Next(-20, 55),
        Summary = Summaries[Random.Shared.Next(Summaries.Length)]
    })
    .ToArray();
} 
  1. 使用AssemblyLoadContext 加载dll
csharp 复制代码
public class CustomAssemblyLoadContext : AssemblyLoadContext
    {
        public CustomAssemblyLoadContext() : base(isCollectible: true)
        {
        }

        protected override Assembly Load(AssemblyName assemblyName)
        {
            return null; // 返回 null 以使用默认的加载机制
        }
    }


    public class PluginLoader
    {
        public void LoadAndExecutePlugin(string pluginPath)
        {
            var context = new CustomAssemblyLoadContext();

            // 加载插件程序集
            var assembly = context.LoadFromAssemblyPath(pluginPath);
            // 查找实现了 IPlugin 接口的类型
            var pluginType = assembly.GetTypes().FirstOrDefault(t => typeof(IPlugin).IsAssignableFrom(t) && !t.IsInterface && !t.IsAbstract);

            if (pluginType != null)
            {
                // 创建插件实例并调用方法
                var plugin = (IPlugin)Activator.CreateInstance(pluginType);
               
                plugin.EllisTest();
            }
            assembly = null;
            GC.Collect();
            GC.WaitForPendingFinalizers();
            context.Unload();
            // 在此处,当 using 块结束时,AssemblyLoadContext 会被卸载,从而实现 DLL 的热卸载。
        }
    }
相关推荐
智商偏低2 天前
ASP.NET Core 中的简单授权
后端·asp.net
是萝卜干呀4 天前
IIS 部署 asp.net core 项目时,出现500.19、500.31问题的解决方案
后端·iis·asp.net·hosting bundle
速易达网络6 天前
ASP.NET MVC 连接 MySQL 数据库查询示例
数据库·asp.net·mvc
智商偏低6 天前
ASP.NET Core 身份验证概述
后端·asp.net
冷冷的菜哥6 天前
ASP.NET Core使用MailKit发送邮件
后端·c#·asp.net·发送邮件·mailkit
冷冷的菜哥10 天前
ASP.NET Core文件分片上传
c#·asp.net·asp.net core·文件分片上传
前端世界12 天前
ASP.NET 实战:用 SqlCommand 打造一个安全的用户注册功能
后端·安全·asp.net
冷冷的菜哥13 天前
ASP.NET Core上传文件到minio
后端·asp.net·上传·asp.net core·minio
忧郁的蛋~14 天前
在.NET标准库中进行数据验证的方法
后端·c#·asp.net·.net·.netcore
jiasting21 天前
高通平台wifi--p2p issue
asp.net·p2p·issue