■ EventLog 클래스를 사용해 이벤트 로그를 기록하는 방법을 보여준다.
▶ Program.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
using System.Diagnostics; namespace TestProject { /// <summary> /// 프로그램 /// </summary> class Program { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 이벤트 로그 /// </summary> private static EventLog _eventLog; /// <summary> /// 이벤트 소스명 /// </summary> private static string _eventSourceName = "TestSource"; /// <summary> /// 이벤트 로그명 /// </summary> private static string _eventLogName = "TestLog"; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 프로그램 시작하기 - Main() /// <summary> /// 프로그램 시작하기 /// </summary> private static void Main() { _eventLog = new EventLog(); if(!EventLog.SourceExists(_eventSourceName)) { EventLog.CreateEventSource(_eventSourceName, _eventLogName); } _eventLog.Source = _eventSourceName; _eventLog.Log = _eventLogName; // 이벤트 로그를 작성한다. _eventLog.WriteEntry("서비스를 시작합니다."); // 이벤트 로그 폴더를 삭제한다. //EventLog.Delete(_eventLogName); } #endregion } } |