ModelStateDictionary.Values Property

 

Gets a collection that contains the values in the dictionary.

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

Syntax

public ICollection<ModelState> Values { get; }
public:
property ICollection<ModelState^>^ Values {
    virtual ICollection<ModelState^>^ get() sealed;
}
abstract Values : ICollection<ModelState> with get
override Values : ICollection<ModelState> with get
Public ReadOnly Property Values As ICollection(Of ModelState)

Property Value

Type: System.Collections.Generic.ICollection<ModelState>

A collection that contains the values of the model-state dictionary.

Implements

IDictionary<TKey, TValue>.Values

See Also

ModelStateDictionary Class
System.Web.Http.ModelBinding Namespace

Return to top