//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Diagnostics { using System.Diagnostics; using System; using System.ComponentModel; /// /// /// Provides data for the event. /// /// public class EntryWrittenEventArgs : EventArgs { private EventLogEntry entry; /// /// /// The default constructor, which /// initializes a new instance of the class without /// specifying a value for . /// /// /// public EntryWrittenEventArgs() { } /// /// /// Initializes a new instance of the class with the /// specified event log entry. /// /// public EntryWrittenEventArgs(EventLogEntry entry) { this.entry = entry; } /// /// /// Represents /// an event log entry. /// /// /// public EventLogEntry Entry { get { return this.entry; } } } }