You've already forked linux-packaging-mono
18 lines
575 B
C#
18 lines
575 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
|
|
|
|
namespace System.Web.Http.Tracing
|
|
{
|
|
/// <summary>
|
|
/// Interface to initialize the tracing layer.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This is an extensibility interface that may be inserted into
|
|
/// <see cref="HttpConfiguration.Services"/> to provide a replacement for the
|
|
/// entire tracing layer.
|
|
/// </remarks>
|
|
public interface ITraceManager
|
|
{
|
|
void Initialize(HttpConfiguration configuration);
|
|
}
|
|
}
|