CodeXchange Tuesday, April 23, 2024
Home
What's it?
Download
Register
My Snippets
Add Snippet
Search
Faq
Contact Us
Sponsors

Website hosted by


Code Snippet Preview

Review the code snippet before inserting it on your project.

Snippet Metadata
Summary: Windows event log helper based on IssueVision Smart Client sample
Language: C#
Author: J.Marc Piulachs
Author snippets RSS:
Culture: en-US
Bytes: 2257
Visual Studio 2005 Snippet:

Snippet Stats
Downloads: 2
Overall rating : 0
Average rating : Snippet rating

Snippet Preview
Code:
using System;
using System.Diagnostics;

namespace IssueVision
{
   // Windows event log helper.
   public class EventLogHelper
   {
      private const string m_eventLogSource = "IssueVision Smart Client 1.0";

      private EventLogHelper()
      {
      }

      // Checks for the existing of an event source. Returns true if the event 
      // source exists; otherwise false is returned.
      public static bool Exists(string eventSourceName)
      {
         return EventLog.Exists(eventSourceName);
      }

      // Creates an event source name for the windows application event log.
      public static void CreateSource(string eventSourceName)
      {
         if (!EventLog.Exists(eventSourceName))
         {
            EventLog.CreateEventSource(eventSourceName, "Application");
         }
      }

      // Removes an event source name from the windows application event log.
      public static void RemoveSource(string eventSourceName)
      {
         if (EventLog.Exists(eventSourceName))
         {
            EventLog.DeleteEventSource(eventSourceName, "Application");
         }
      }

      // Logs an error to the application log.
      public static void LogError(string message)
      {
         LogEvent(m_eventLogSource, message, EventLogEntryType.Error);
      }

      // Logs a failure audit message to the application event log.
      public static void LogFailureAudit(string message)
      {
         LogEvent(m_eventLogSource, message, EventLogEntryType.FailureAudit);
      }

      // Logs a sucess audit message to the application event log.
      public static void LogSuccessAudit(string message)
      {
         LogEvent(m_eventLogSource, message, EventLogEntryType.SuccessAudit);
      }

      // Logs a warning message to the application event log.
      public static void LogWarning(string message)
      {
         LogEvent(m_eventLogSource, message, EventLogEntryType.Warning);
      }

      // Logs an information message to the application event log.
      public static void LogInformation(string message)
      {
         LogEvent(m_eventLogSource, message, EventLogEntryType.Information);
      }

      // Log an message to the Windows Application Event Log with a specified type.
      private static void LogEvent(string eventLogSource, string message, EventLogEntryType eventLogEntryType)
      {
         EventLog.WriteEntry(eventLogSource, message, eventLogEntryType);
      }
   }
}

Snippet Comments
Comments:
No comments for this snippet

Other snippets that may interest you..
Related Snippets
TDT - GridPage - Page_Init (C#)
CustomValitaor (C#)
(C#)
Get the file extension from a file path or file name (VB.NET)
grab record from db and subtracts it from variable (VB.NET)



Copyright ©2009-2024 CodeXchange. Server version 1.0.3720.32855 Client Version 0.9.0.0

With from Barcelona

Most Helpful members
These are the members who have received the most points for their helpful samples
Zepho Zep
Robert Wagner
Galen Taylor

All time 'Hall of fame'
Formating a file size and adding the B, KB, MB and GB extension appropriately with string.Format (C#)
INI File Access (VB.NET)
Read XML from string into DataSet (C#)
Create Manifest File for your Application (VB.NET)
Round function to avoid banker's rounding (VB.NET)
Get Short and Long Path Names (VB.NET)
Sending Mail through authenticated SMTP server (C#)
One Way Hash for strings (C#)
Formating a file size and adding the B, KB, MB and GB extension appropriately with string.Format (C#)
How do I load an image from a URI address? (VB.NET)
Use our easy to use Visual Studio.NET addin client and start sharing code snippets with the CodeXchange community!
Refreshed: Tuesday, April 23, 2024