HttpActionContext.ModelState Property

 

Gets the model state dictionary for the context.

Namespace:   System.Web.Http.Controllers
Assembly:  System.Web.Http (in System.Web.Http.dll)

Syntax

public ModelStateDictionary ModelState { get; }
public:
property ModelStateDictionary^ ModelState {
    ModelStateDictionary^ get();
}
member ModelState : ModelStateDictionary with get
Public ReadOnly Property ModelState As ModelStateDictionary

Property Value

Type: System.Web.Http.ModelBinding.ModelStateDictionary

The model state dictionary.

See Also

HttpActionContext Class
System.Web.Http.Controllers Namespace

Return to top