// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information. using System.Net.Http; namespace System.Web.Http { /// /// This attribute is used on action parameters to indicate /// they come only from the content body of the incoming . /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Parameter, Inherited = true, AllowMultiple = false)] public sealed class FromBodyAttribute : Attribute { } }