ModelState Class

 

Encapsulates the state of model binding to a property of an action-method argument, or to the argument itself.

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

Inheritance Hierarchy

System.Object
  System.Web.Http.ModelBinding.ModelState

Syntax

[SerializableAttribute]
public class ModelState
[SerializableAttribute]
public ref class ModelState 
[<SerializableAttribute>]
type ModelState = class end
<SerializableAttribute>
Public Class ModelState

Constructors

Name Description
System_CAPS_pubmethod ModelState()

Initializes a new instance of the ModelState class.

Properties

Name Description
System_CAPS_pubproperty Errors

Gets a ModelErrorCollection object that contains any errors that occurred during model binding.

System_CAPS_pubproperty Value

Gets a ValueProviderResult object that encapsulates the value that was being bound during model binding.

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

System.Web.Http.ModelBinding Namespace

Return to top