我有一个 ASP.NET MVC 3 Razor Web 应用程序。
我有一个WebViewPage
扩展:
public static bool Blah(this WebViewPage webViewPage)
{
return blah && blah;
}
我想从我的HtmlHelper
扩展程序中访问它:
public static MvcHtmlString BlahHelper(this HtmlHelper htmlHelper, string linkText, string actionName)
{
// how can i get access to the WebViewPage extension method here?
}
如果必须,我当然可以复制WebViewPage
扩展的功能,但只是想知道是否可以从 HTML 帮助程序访问它。