15

我的 C# 代码可能在 IIS(当前为 7.5,但我不想依赖特定版本)或其他地方的 MVC3 应用程序中运行。

看起来知道代码在 IIS 下运行的一种方法是检查当前进程名称,但这种方法取决于硬编码文件名字符串。

是否有一些编程方式来检测我的代码是否在 IIS 下运行,而不取决于 IIS 版本?

4

2 回答 2

28

查看HostingEnvironment类,尤其是IsHosted方法。

这将告诉您是否托管在ApplicationManager中,这将告诉您是否托管在 ASP.NET 中。

严格来说,它不会告诉您您在 IIS 下运行,但我认为这实际上更好地满足了您的需求。

示例代码:

// Returns the file-system path for a given path.
public static string GetMappedPath(string path)
{
    if (HostingEnvironment.IsHosted)
    {
        if (!Path.IsPathRooted(path))
        {
            // We are about to call MapPath, so need to ensure that 
            // we do not pass an absolute path.
            // 
            // We use HostingEnvironment.MapPath, rather than 
            // Server.MapPath, to allow this method to be used
            // in application startup. Server.MapPath calls 
            // HostingEnvironment.MapPath internally.
            return HostingEnvironment.MapPath(path);
        }
        else {
            return path;
        }
    }
    else 
    {
        throw new ApplicationException (
                "I'm not in an ASP.NET hosted environment :-(");
    }
}
于 2012-04-19T08:08:48.677 回答
-2

看看ServiceController类。服务名称仍将是硬编码的,但服务名称更改的可能性相对较低。

您还可以使用netstat -ab来找出端口 80 上正在运行的内容。

于 2012-04-19T08:00:08.560 回答