ModelExplorer.GetExplorerForProperty メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
GetExplorerForProperty(String) |
ModelExplorer指定 |
GetExplorerForProperty(String, Func<Object,Object>) |
ModelExplorer指定 |
GetExplorerForProperty(String, Object) |
ModelExplorer指定 |
GetExplorerForProperty(String)
- ソース:
- ModelExplorer.cs
- ソース:
- ModelExplorer.cs
- ソース:
- ModelExplorer.cs
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.cs
- ソース:
- ModelExplorer.cs
- ソース:
- ModelExplorer.cs
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.cs
- ソース:
- ModelExplorer.cs
- ソース:
- ModelExplorer.cs
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
。
注釈
これにより、特定のモデル値を持つモデル エクスプローラーが作成されるため、結果はキャッシュされません。