简体   繁体   English

如何找到Http模块组装的物理路径

[英]how to find the physical path of Http module Assembly

In my web application we are using HTTP modules, this module has been registered as follows: 在我的Web应用程序中,我们使用HTTP模块,该模块已按以下方式注册:

<system.webServer>
    <modules>
        <add name="MyModule" type="com.Security.MyModule, MyModule, version=1.0.5873.52018, culture= neutral, PublicKeyToken=fegg50b0f0f4" preCondition="managedHandler" /> 
    <modules>
<system.webServer>

I want to edit the functionality of this module, where can I find the physical path of the above module. 我想编辑该模块的功能,在哪里可以找到上述模块的物理路径。

Note: There is no assembly reference made for this module in the web application. 注意:Web应用程序中没有为此模块进行汇编参考。 The above Registration code in the Web.config file is the only link between the module and application. Web.config文件中的上述注册码是模块和应用程序之间的唯一链接。

I would search in the local directory, the bin and in the GAC. 我将在本地目录,bin和GAC中搜索。 More information on assembly loading can be found here... . 有关装配件加载的更多信息,请参见此处 You may also like to try Fuslogvw . 您可能还想尝试Fuslogvw

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM