ModelMetadataProvider.GetMetadataForProperties(Object, Type) Method

Definition

Gets a ModelMetadata object for each property of a model.

public abstract System.Collections.Generic.IEnumerable<System.Web.Mvc.ModelMetadata> GetMetadataForProperties (object container, Type containerType);
abstract member GetMetadataForProperties : obj * Type -> seq<System.Web.Mvc.ModelMetadata>
Public MustOverride Function GetMetadataForProperties (container As Object, containerType As Type) As IEnumerable(Of ModelMetadata)

Parameters

container
Object

The container.

containerType
Type

The type of the container.

Returns

A ModelMetadata object for each property of a model.

Applies to