18 lines
631 B
C#
18 lines
631 B
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="EntryWrittenEventHandler.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Diagnostics {
|
|
|
|
using System.Diagnostics;
|
|
|
|
using System;
|
|
|
|
/// <devdoc>
|
|
/// <para>[To be supplied.]</para>
|
|
/// </devdoc>
|
|
public delegate void EntryWrittenEventHandler(object sender, EntryWrittenEventArgs e);
|
|
}
|