从 ASP.NET MVC 站点中的 ResultExecutingContext 访问控制器方法

发布于 2024-09-14 04:11:39 字数 721 浏览 9 评论 0原文

我正在编写一个属性,我想在其中访问在其操作之一上具有该属性的控制器所派生的类上的方法。这实在是太拗口了,所以让我解释一下:

  • 我的控制器派生自一个类,该类具有具有以下签名的方法:protected bool IsSearchEngine()(基类本身派生自 Controller)
  • 我的控制器上的操作之一有一个属性
  • 该属性派生自 ActionFilterAttribute 并重载 OnResultExecuting
  • OnResultExecuting 方法有一个 ResultExecutingContext 参数。

如何通过 ResultExecutingContext 访问 IsSearchEngine()


更新: 到目前为止,我已经获得了编译器和 Intellisense 接受这一点:

(filterContext.Controller as MyAssembly.Controllers.BaseControllerClass).IsSearchEngine()

这是正确的方法吗?我还没有测试过。

I'm writing an attribute where I want to access a method on the class that the controller that has the attribute on one of its actions derives from. That's quite a mouthful, so let me explain:

  • My controller derives from a class that has a method with the following signature: protected bool IsSearchEngine() (the base class itself derives from Controller)
  • One of the actions on my controller has an attribute
  • The attribute derives from ActionFilterAttribute and overloads OnResultExecuting.
  • The OnResultExecuting method has a ResultExecutingContext parameter.

How can I access IsSearchEngine() through the ResultExecutingContext?


UPDATE: So far, I've gotten the compiler and Intellisense to accept this:

(filterContext.Controller as MyAssembly.Controllers.BaseControllerClass).IsSearchEngine()

Is that the right way to do this? I haven't tested it yet.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

韶华倾负 2024-09-21 04:11:39

通过将 resultExecutingContext.Controller 转换为 BaseController,您可以访问基本控制器的所有属性和方法,但方法 IsSearchEngine() 的保护级别代码> 您无法访问它。如果您通过 public 声明了 IsSerchEngine(),则可以将其调用为 ((BaseController)resultExecutingContext.Controller).IsSearchEngine()

By casting the resultExecutingContext.Controller to BaseController you can access through all Property and Methods of your base controller, but the protection level of your Method IsSearchEngine() you cannot access it. If you declared your IsSerchEngine() by public you can just call it as ((BaseController)resultExecutingContext.Controller).IsSearchEngine()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文