'ServiceStack.MiniProfiler.IHtmlString'不包含'AsRaw'的定义

时间:2013-06-25 07:09:18

标签: asp.net-mvc asp.net-mvc-4 servicestack

我已经通过nuget在MVC4应用程序中安装了servicestack MVC并尝试启用迷你探查器。

我按照Global.asax中的以下说明完成了:

protected void Application_BeginRequest(object src, EventArgs e)
    {
        if (Request.IsLocal)
            ServiceStack.MiniProfiler.Profiler.Start();
    }

protected void Application_EndRequest(object src, EventArgs e)
    {
        ServiceStack.MiniProfiler.Profiler.Stop();
    }      

我在布局页面中放置了@ ServiceStack.MiniProfiler.Profiler.RenderIncludes()。AsRaw()。但是,此参考中不存在此方法。我只能看到“ToHtmlString()”& “@ ServiceStack.MiniProfiler.Profiler.RenderIncludes()”中的“ToString()”表示html被转义。是否在MVC4中删除了“AsRaw()”方法?

1 个答案:

答案 0 :(得分:4)

T.AsRaw()ServiceStack.Html.HtmlExtensions.AsRaw中的扩展方法,因此您基本上需要包含 ServiceStack.Html 命名空间。