// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information. using System.Collections.Generic; using System.Net.Http; namespace System.Web.Http.Controllers { /// /// A contract for a conversion routine that can take the result of an action returned from /// /// and convert it to an instance of . /// public interface IActionResultConverter { HttpResponseMessage Convert(HttpControllerContext controllerContext, object actionResult); } }