// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Microsoft.AspNet.Mvc.ModelBinding { /// /// Represents state of models which are bound using body. /// public enum BodyBindingState { /// /// Represents if there has been no metadata found which needs to read the body during the current /// model binding process. /// NotBodyBased, /// /// Represents if there is a that /// has been found during the current model binding process. /// FormatterBased, /// /// Represents if there is a that /// has been found during the current model binding process. /// FormBased } }