Write to Event Log

.Net te basitçe Event log yazmak için özet bir extension method örneği;
public static bool WriteEventLog(string Message)

{

try

{

string sSource = "My Custom Application";

string sLog = "Application";

string sEvent = Message;



if (!EventLog.SourceExists(sSource))

EventLog.CreateEventSource(sSource, sLog);



EventLog.WriteEntry(sSource, sEvent,
EventLogEntryType.Error, 234);

return true;

}

catch { return false; }

}

Bir yanıt yazın

E-posta adresiniz yayınlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir