// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information. namespace System.Web.Http.Tracing { /// /// Interface to initialize the tracing layer. /// /// /// This is an extensibility interface that may be inserted into /// to provide a replacement for the /// entire tracing layer. /// public interface ITraceManager { void Initialize(HttpConfiguration configuration); } }