Load an Assembly from Bin in ASP.NET

后端 未结 4 2470
被撕碎了的回忆
被撕碎了的回忆 2021-02-20 10:00

I have a file name, like \"Foo.dll,\" for a library that I know is in the bin directory. I want to create an Assembly object for it. I\'m trying to instantiate this object from

4条回答
  •  不知归路
    2021-02-20 10:20

    Assembly.Load should not require a file path, rather it requires an AssemblyName. If you know that your assembly is in the standard search path (i.e. the bin directory), you should not need to know the disk path of the assembly...you only need to know its assembly name. In the case of your assembly, assuming you don't need a specific version, culture, etc., the assembly name should just be "Foo":

    Assembly fooAssembly = Assembly.Load("Foo");
    

    If you do need to load a specific version, you would do the following:

    Assembly fooAssembly = Assembly.Load("Foo, Version=1.1.2, Culture=neutral");
    

    Generally, you want to use Assembly.Load, rather than Assembly.LoadFrom or Assembly.LoadFile. LoadFrom and LoadFile work outside of the standard fusion process, and can lead to assemblies being loaded more than once, loaded from insecure locations, etc. Assembly.Load performs a "standard" load, searching the standard assembly locations such as bin, the GAC, etc., and applies all the standard security checks.

提交回复
热议问题