| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // System.Diagnostics.EntryWrittenEventArgs.cs
- //
- // Authors:
- // Jonathan Pryor ([email protected])
- //
- // (C) 2002
- //
- using System;
- using System.Diagnostics;
- using System.Runtime.InteropServices;
- namespace System.Diagnostics {
- public class EntryWrittenEventArgs : EventArgs {
- private EventLogEntry entry;
- public EntryWrittenEventArgs () : this (null)
- {
- }
- public EntryWrittenEventArgs (EventLogEntry entry)
- {
- this.entry = entry;
- }
- public EventLogEntry Entry {
- get {return entry;}
- }
- }
- }
|