CachedAssociatedMetadataProvider<TModelMetadata>.GetMetadataForProperty Method

Definition

Overloads

GetMetadataForProperty(Func<Object>, Type, PropertyDescriptor)

Returns the metadata for the specified property.

GetMetadataForProperty(Func<Object>, Type, String)

Returns the metadata for the specified property.

GetMetadataForProperty(Func<Object>, Type, PropertyDescriptor)

Returns the metadata for the specified property.

protected override sealed System.Web.Mvc.ModelMetadata GetMetadataForProperty (Func<object> modelAccessor, Type containerType, System.ComponentModel.PropertyDescriptor propertyDescriptor);
override this.GetMetadataForProperty : Func<obj> * Type * System.ComponentModel.PropertyDescriptor -> System.Web.Mvc.ModelMetadata
Protected Overrides NotOverridable Function GetMetadataForProperty (modelAccessor As Func(Of Object), containerType As Type, propertyDescriptor As PropertyDescriptor) As ModelMetadata

Parameters

modelAccessor
Func<Object>

The model accessor.

containerType
Type

The container type.

propertyDescriptor
PropertyDescriptor

The property descriptor.

Returns

The metadata for the specified property.

Applies to

GetMetadataForProperty(Func<Object>, Type, String)

Returns the metadata for the specified property.

public override sealed System.Web.Mvc.ModelMetadata GetMetadataForProperty (Func<object> modelAccessor, Type containerType, string propertyName);
override this.GetMetadataForProperty : Func<obj> * Type * string -> System.Web.Mvc.ModelMetadata
Public Overrides NotOverridable Function GetMetadataForProperty (modelAccessor As Func(Of Object), containerType As Type, propertyName As String) As ModelMetadata

Parameters

modelAccessor
Func<Object>

The model accessor.

containerType
Type

The container type.

propertyName
String

The property name.

Returns

The metadata for the specified property.

Applies to