15 lines
424 B
C#
15 lines
424 B
C#
|
//------------------------------------------------------------------------------
|
||
|
// <copyright file="TraceContext.cs" company="Microsoft">
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
namespace System.Web {
|
||
|
|
||
|
public delegate void TraceContextEventHandler(object sender, TraceContextEventArgs e);
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|