Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何关于使用 AOP、Castle 和登录 .Net 应用程序的教程或示例程序?我已经找到了一些碎片,但我正在寻找更多的东西来帮助我形成更完整的画面。
谢谢,-布赖恩
您需要使用继承自 IInterceptor 的自定义拦截器。例如:
public class LogInterceptor : IInterceptor { public void Intercept(IInvocation invocation) { Logger.Write("I'm in your method logging your access"); invocation.Proceed(); } }
希望这会有所帮助。