blob: 7014a0ff2cf7fe31c587c4f999698a796e2246e4 (
plain)
1
2
3
4
5
6
7
8
9
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
namespace System.Web.Http.Controllers
{
public interface IActionValueBinder
{
HttpActionBinding GetBinding(HttpActionDescriptor actionDescriptor);
}
}
|