// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information. using System.Net.Http; using System.Net.Http.Formatting; using System.Web.Http.Tracing.Tracers; namespace System.Web.Http.Tracing { /// /// Interface used to mark classes. /// internal interface IFormatterTracer { /// /// Gets the associated . /// HttpRequestMessage Request { get; } /// /// Gets the inner this tracer is monitoring. /// MediaTypeFormatter InnerFormatter { get; } } }