0

大家下午好,

我正在尝试使用 Reza Ahmadi http://www.codeproject.com/Articles/337564/Aspect-Oriented-Programming-Using-Csharp-and-PostS和 dnrTV http://www.codeproject.com/Articles/Aspect-Oriented-Programming-Using-Csharp-and-PostS 的示例“使用 C# 和 PostSharp 进行面向方面编程”: //dnrtv.com/dnrtvplayer/player.aspx?ShowNum=0190用于异常处理。如果“OnExceptionAspect”在同一个项目/程序集中,一切都很好,但是如果我将类移动到它自己的 dll,则该事件不起作用。

[assembly: ExceptionAspect (AttributePriority = 1)]
[assembly: ExceptionAspect(AttributePriority = 2, AttributeExclude = true, AttributeTargetTypes = "HpsErp.Common.AspectObject.*")]
    namespace AspectObject
         [Serializable]
            public class ExceptionAspect : OnExceptionAspect
            {
                public override void OnException(MethodExecutionArgs args)
                {
                    Trace.TraceError("{0} in {1}.{2}",
                        args.Exception.GetType().Name,
                        args.Method.DeclaringType.FullName,
                        args.Method.Name);

                    if (args.Instance != null)
                    {
                       Trace.TraceInformation("this={0}", args.Instance); 
                    }

                    foreach (ParameterInfo parameter in args.Method.GetParameters())
                    {
                        Trace.TraceInformation("{0}={1}", parameter.Name,
                            args.Arguments[parameter.Position] ?? "null");
                    }
                }

我还在外部 dll 中为“Timing”创建了一个类,如果我向该类添加自定义属性,效果会很好。

namespace AspectObject
 [Serializable]
    [MulticastAttributeUsage(MulticastTargets.Method)]
    public class TimingAspect : OnMethodBoundaryAspect
    {
        [NonSerialized]
        Stopwatch _StopWatch;

        public override void OnEntry(MethodExecutionArgs args)
        {
            _StopWatch = Stopwatch.StartNew();

            base.OnEntry(args);
        }

        public override void OnExit(MethodExecutionArgs args)
        {
            Console.WriteLine(string.Format("[{0}] took {1}ms to execute",
                new StackTrace().GetFrame(1).GetMethod().Name,
                _StopWatch.ElapsedMilliseconds));

            base.OnExit(args);
        }


Using AspectObject;

namespace MyApp
{
    public class Car
    {
        [TimingAspect]
        private void Drive()
        {
            //...
        }
    }
}

最后,我希望这是多个 dll,以便我可以重用它,即:wcf。

感谢您的任何帮助...

詹姆士

4

1 回答 1

1

如果它们存储在单独的 DLL 中,您可以访问它们。

我总是创建一个名为 Aspects 的 DLL 类项目。在我想要 AOP 的项目中,我添加了对该 dll 类的引用。然后像往常一样装饰你的方法/类/程序集。

https://github.com/sharpcrafters/PostSharp-Toolkits <-- 很好的例子 http://researchaholic.com/tag/postsharp/ <-- 更多例子,刚刚上传了一个例子

于 2012-08-16T18:28:24.560 回答