gpt4 book ai didi

c# - 在运行时打开/关闭 Postsharp 跟踪?

转载 作者:行者123 更新时间:2023-11-30 12:49:40 25 4
gpt4 key购买 nike

谁能告诉我,如果在 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.aspxhttp://www.sharpcrafters.com/blog/post/Day-3-Applying-Aspects-with-Multicasting-Part-2.aspx

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

关于c# - 在运行时打开/关闭 Postsharp 跟踪?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11015635/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com