c# – 在运行时开启关闭Postsharp跟踪?

c# – 在运行时开启关闭Postsharp跟踪?,第1张

概述任何人都可以告诉我,如果在PostSharp中,我可以以某种方式在运行时打开/关闭跟踪?我需要编写更少的代码,所以最近我可以简单地删除它.暂时需要跟踪功能. 也许有一个替代PostSharp的运行时开/关功能? 更新1:我想出了主意,但我不知道它是否合适.这是一个例子 public class Smth { private long i = 0; [Tra 任何人都可以告诉我,如果在postsharp中,我可以以某种方式在运行时打开/关闭跟踪?我需要编写更少的代码,所以最近我可以简单地删除它.暂时需要跟踪功能.

也许有一个替代postsharp的运行时开/关功能?

更新1:我想出了主意,但我不知道它是否合适.这是一个例子

public class Smth    {        private long i = 0;        [TraceAttribute]        public voID Execute()        {            Console.Writeline("Execute call" + i++);            Thread.Sleep(200);        }    }    [Serializable]    public class TraceAttribute : OnMethodBoundaryAspect    {        public overrIDe voID OnEntry(MethodExecutionArgs args)        {            if(Manager.IsEnabled)            {                Console.Writeline();                Console.Writeline(string.Format("Entering {0}",args.Method.name));            }        }        public overrIDe voID OnExit(MethodExecutionArgs args)        {            if(Manager.IsEnabled)            {                Console.Writeline(string.Format("Leaving {0}",args.Method.name));                Console.Writeline();            }        }    }    public static class Manager    {        public static bool IsEnabled { get; set; }        static Manager()        {               IsEnabled = true;        }    }

通过更改IsEnabled属性,我可以打开/关闭跟踪…
还有其他建议吗?

解决方法 你有什么是好的(只要它是暂时的).使用多播轻松应用方面.请参阅我的文章 http://www.sharpcrafters.com/blog/post/Day-2-Applying-Aspects-with-Multicasting-Part-1.aspx和 http://www.sharpcrafters.com/blog/post/Day-3-Applying-Aspects-with-Multicasting-Part-2.aspx

免责声明:我假设OP想要在没有重建的情况下这样做,因为他说运行时让我相信他想要一个配置设置.否则我会建议一条完全不同的路线

总结

以上是内存溢出为你收集整理的c# – 在运行时开启/关闭Postsharp跟踪?全部内容,希望文章能够帮你解决c# – 在运行时开启/关闭Postsharp跟踪?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1228976.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存