首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

怎么创建事件日志

2012-01-30 
如何创建事件日志我想在异常处理中添加一个事件日志记录功能,应该怎么做?[解决办法].NET Framework 类库Ev

如何创建事件日志
我想在异常处理中添加一个事件日志记录功能,应该怎么做?

[解决办法]
.NET Framework 类库
EventLog.WriteEntry 方法 (String)
将信息类型项与给定的消息文本一起写入事件日志。

下面的示例创建源 MySource(如果尚未存在),并在事件日志 MyNewLog 中写入一项。

using System;
using System.Diagnostics;
using System.Threading;

class MySample{

public static void Main(){

// Create the source, if it does not already exist.
if(!EventLog.SourceExists( "MySource ")){
EventLog.CreateEventSource( "MySource ", "MyNewLog ");
Console.WriteLine( "CreatingEventSource ");
}

// Create an EventLog instance and assign its source.
EventLog myLog = new EventLog();
myLog.Source = "MySource ";

// Write an informational entry to the event log.
myLog.WriteEntry( "Writing to event log. ");

}
}

热点排行