我想将AutoFlush属性设置为true,但我需要通过代码来完成。编程。
我找到了这个how to configure the trace element以及跟踪类的AutoFlush property。
然后我有这个代码来获取TraceSource:
private static TraceSource GetTraceSource()
{
var ts = new TraceSource("TraceManager")
{
Switch =
{
Level = SourceLevels.All
}
};
ts.Attributes.Add("AutoFlush", "true");
ts.Listeners.Remove("Default");
var file = System.IO.Path.GetTempPath() + @"\MyApplication.log";
var textListener = new TextWriterTraceListener(file)
{
Filter = new EventTypeFilter(SourceLevels.All)
};
ts.Listeners.Add(textListener);
return ts;
}
如何在此代码中将AutoFlush属性设置为true?
感谢。
答案 0 :(得分:4)
尝试添加此内容...
Trace.AutoFlush = true;