PostSharp:如何获取 ILocationBinding

发布于 2024-11-27 02:21:39 字数 604 浏览 1 评论 0原文

我正在写一个基于位置的方面。 OnGetValue 方法获取 LocationInterceptionArgs 类型的参数,允许我访问原始属性(或者,如果有多个活动方面,则可以访问链中的下一个级别)调用)。

现在我想在 OnGetValue 方法之外的不同时间读取该属性。来自 文档,我发现我需要一个 ILocationBinding 的实例,然后我可以随时致电。我可以在第一次调用 OnGetValue 时从 LocationInterceptionArgs 参数中保存 ILocationBinding。但我想在第一次调用 getter 之前访问该值。

如何在调用 OnGetValue 之前获取 ILocationBinding 实例?

I'm writing a location-based aspect. The OnGetValue method gets an argument of type LocationInterceptionArgs, allowing me to access the original property (or, if there are multiple active aspects, to access the next level in the chain of invocation).

Now I want to read the property at various times outside the OnGetValue method. From the documentation, I gather that I need an instance of ILocationBinding, which I can then call at any time. I could save the ILocationBinding from the LocationInterceptionArgs argument the first time OnGetValue is called. But I want to access the value before the getter is called for the first time.

How can I get an ILocationBinding instance before OnGetValue is called?

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

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

发布评论

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

评论(1

月牙弯弯 2024-12-04 02:21:39

绑定位于 LocationInterceptionArgs.Binding 中。

The binding is in LocationInterceptionArgs.Binding.

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