EventLog.Entries : EventLog « System.Diagnostics « C# / C Sharp by API






EventLog.Entries

  

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

using Microsoft.Win32;

using System.Diagnostics;

public class MainClass{
   public static void Main(){
    EventLog log = new EventLog();

    for(int i = 0; i < 5; i++)
    {
      try
      {
        Console.WriteLine("Message: " + log.Entries[i].Message + "\n" +  
          "Box: " + log.Entries[i].MachineName + "\n" +
          "App: " + log.Entries[i].Source + "\n" +
          "Time entered: " + log.Entries[i].TimeWritten);
      }
      catch{}
    }

    log.Close();

   }
}

   
    
  








Related examples in the same category

1.new EventLog()
2.EventLog.CreateEventSource
3.EventLog.Delete
4.EventLog.DeleteEventSource
5.EventLog.Log
6.EventLog.Source
7.EventLog.SourceExists
8.EventLog.WriteEntry