我尝试创建简单的Log并使用此方法,但是我收到有关Admin的错误。权利。 这怎么可能?我看到了应用程序。拥有所有管理员权限。
public static void WriteToEventLog(string message)
{
try
{
string cs = "WebReports";
EventLog elog = new EventLog();
if (!EventLog.SourceExists(cs))
{
EventLog.CreateEventSource(cs + "Source", cs + "Log");
}
elog.Source = cs;
elog.EnableRaisingEvents = true;
elog.WriteEntry(message);
}
catch
{
// ERROR OCCURES
}
}
任何线索谢谢!