AssociatedMetadataProvider.GetMetadataForProperty 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在衍生類別中覆寫時,傳回指定的屬性的中繼資料。
多載
GetMetadataForProperty(Func<Object>, Type, PropertyDescriptor) |
在衍生類別中覆寫時,傳回屬性描述項物件所指定的屬性的中繼資料。 |
GetMetadataForProperty(Func<Object>, Type, String) |
在衍生類別中覆寫時,傳回屬性名稱所指定的屬性的中繼資料。 |
GetMetadataForProperty(Func<Object>, Type, PropertyDescriptor)
在衍生類別中覆寫時,傳回屬性描述項物件所指定的屬性的中繼資料。
protected:
virtual System::Web::ModelBinding::ModelMetadata ^ GetMetadataForProperty(Func<System::Object ^> ^ modelAccessor, Type ^ containerType, System::ComponentModel::PropertyDescriptor ^ propertyDescriptor);
protected virtual System.Web.ModelBinding.ModelMetadata GetMetadataForProperty (Func<object> modelAccessor, Type containerType, System.ComponentModel.PropertyDescriptor propertyDescriptor);
override this.GetMetadataForProperty : Func<obj> * Type * System.ComponentModel.PropertyDescriptor -> System.Web.ModelBinding.ModelMetadata
Protected Overridable Function GetMetadataForProperty (modelAccessor As Func(Of Object), containerType As Type, propertyDescriptor As PropertyDescriptor) As ModelMetadata
參數
- containerType
- Type
容器的型別。
- propertyDescriptor
- PropertyDescriptor
屬性描述元。
傳回
指定之屬性的中繼資料。
適用於
GetMetadataForProperty(Func<Object>, Type, String)
在衍生類別中覆寫時,傳回屬性名稱所指定的屬性的中繼資料。
public:
override System::Web::ModelBinding::ModelMetadata ^ GetMetadataForProperty(Func<System::Object ^> ^ modelAccessor, Type ^ containerType, System::String ^ propertyName);
public override System.Web.ModelBinding.ModelMetadata GetMetadataForProperty (Func<object> modelAccessor, Type containerType, string propertyName);
override this.GetMetadataForProperty : Func<obj> * Type * string -> System.Web.ModelBinding.ModelMetadata
Public Overrides Function GetMetadataForProperty (modelAccessor As Func(Of Object), containerType As Type, propertyName As String) As ModelMetadata
參數
- containerType
- Type
容器的型別。
- propertyName
- String
屬性的名稱。
傳回
指定之屬性的中繼資料。
例外狀況
containerType
參數為 null
。
-或-
propertyName
參數是 null
或空白。
-或-
無法在 propertyName
型別中找到具有 containerType
所指定之名稱的屬性。