AssociatedMetadataProvider.GetMetadataForProperty Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetMetadataForProperty(Func<Object>, Type, PropertyDescriptor) |
Returns the metadata for the specified property using the container type and property descriptor. |
GetMetadataForProperty(Func<Object>, Type, String) |
Returns the metadata for the specified property using the container type and property name. |
GetMetadataForProperty(Func<Object>, Type, PropertyDescriptor)
Returns the metadata for the specified property using the container type and property descriptor.
protected virtual 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 Overridable Function GetMetadataForProperty (modelAccessor As Func(Of Object), containerType As Type, propertyDescriptor As PropertyDescriptor) As ModelMetadata
Parameters
- containerType
- Type
The type of the container.
- propertyDescriptor
- PropertyDescriptor
The property descriptor
Returns
The metadata for the specified property using the container type and property descriptor.
Applies to
GetMetadataForProperty(Func<Object>, Type, String)
Returns the metadata for the specified property using the container type and property name.
public override 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 Function GetMetadataForProperty (modelAccessor As Func(Of Object), containerType As Type, propertyName As String) As ModelMetadata
Parameters
- containerType
- Type
The type of the container.
- propertyName
- String
The name of the property.
Returns
The metadata for the specified property using the container type and property name.