EntryWrittenEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Services / Monitoring / system / Diagnosticts / EntryWrittenEventArgs.cs / 1 / EntryWrittenEventArgs.cs

                            //------------------------------------------------------------------------------ 
// 
//     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; 
            } 
        }
    } 
}


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK