Giriş
Bu sınıfı kullanmak için şu satırı dahil ederiz.
Bu constructor log yazmak için kullanılır. Şöyle yaparız.
Bu constructor logları dolaşmak için kullanılır. Şöyle yaparız.
Şöyle yaparız.
EventLogEntry tipinden nesneler döner. Şöyle yaparız.
Şöyle yaparız.
Şöyle yaparız.
Bu sınıfı kullanmak için şu satırı dahil ederiz.
System.Diagnostics.EventLog
Constructor - defaultBu constructor log yazmak için kullanılır. Şöyle yaparız.
EventLog eLog = new EventLog();
ConstructorBu constructor logları dolaşmak için kullanılır. Şöyle yaparız.
string logType = "System";
EventLog eLog = new EventLog(logType, System.Environment.MachineName);
Close metoduŞöyle yaparız.
eLog.Close();
Entries AlanıEventLogEntry tipinden nesneler döner. Şöyle yaparız.
for (int i = eLog.Entries.Count; i >= 0 ; i--){
EventLogEntry entry = eLog.Entries[i];
}
Şöyle yaparız.
foreach (EventLogEntry entry in eLog.Entries)
{...}
Log Alanı
Şöyle yaparız.
eLog.Log = "Security";
SourceExists metodu
Şöyle yaparız.
ÖrnekŞöyle yaparız.
string source = ...;
string logName = ...;
if (!EventLog.SourceExists(source))
EventLog.CreateEventSource(source, logName);
WriteEntry MetoduŞöyle yaparız.
eLog.Source = "...";
eLog.WriteEntry("...");
ÖrnekŞöyle yaparız.
string source = ...;
string eventText = ...;
EventLog eventLog = new EventLog();
eventLog.Source = source;
eventLog.WriteEntry(eventText, EventLogEntryType.Information);
Hiç yorum yok:
Yorum Gönder