ModelExplorer.GetExplorerForProperty 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
GetExplorerForProperty(String) |
ModelExplorer取得具有指定 |
GetExplorerForProperty(String, Func<Object,Object>) |
ModelExplorer取得具有指定 |
GetExplorerForProperty(String, Object) |
ModelExplorer取得具有指定 |
GetExplorerForProperty(String)
ModelExplorer取得具有指定 name
之 屬性的 ,如果找不到屬性,則 null
為 。
public:
Microsoft::AspNetCore::Mvc::ViewFeatures::ModelExplorer ^ GetExplorerForProperty(System::String ^ name);
public Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExplorer GetExplorerForProperty (string name);
member this.GetExplorerForProperty : string -> Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExplorer
Public Function GetExplorerForProperty (name As String) As ModelExplorer
參數
- name
- String
屬性名稱。
傳回
ModelExplorer 或 null
。
適用於
GetExplorerForProperty(String, Func<Object,Object>)
ModelExplorer取得具有指定 name
之 屬性的 ,如果找不到屬性,則 null
為 。
public:
Microsoft::AspNetCore::Mvc::ViewFeatures::ModelExplorer ^ GetExplorerForProperty(System::String ^ name, Func<System::Object ^, System::Object ^> ^ modelAccessor);
public Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExplorer GetExplorerForProperty (string name, Func<object,object> modelAccessor);
member this.GetExplorerForProperty : string * Func<obj, obj> -> Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExplorer
Public Function GetExplorerForProperty (name As String, modelAccessor As Func(Of Object, Object)) As ModelExplorer
參數
- name
- String
屬性名稱。
傳回
ModelExplorer 或 null
。
備註
由於這會建立具有特定模型存取子函式的模型總管,因此不會快取結果。
適用於
GetExplorerForProperty(String, Object)
ModelExplorer取得具有指定 name
之 屬性的 ,如果找不到屬性,則 null
為 。
public:
Microsoft::AspNetCore::Mvc::ViewFeatures::ModelExplorer ^ GetExplorerForProperty(System::String ^ name, System::Object ^ model);
public Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExplorer GetExplorerForProperty (string name, object model);
member this.GetExplorerForProperty : string * obj -> Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExplorer
Public Function GetExplorerForProperty (name As String, model As Object) As ModelExplorer
參數
- name
- String
屬性名稱。
- model
- Object
模型值。
傳回
ModelExplorer 或 null
。
備註
由於這會建立具有特定模型值的模型總管,因此不會快取結果。