ModelExplorer.GetExplorerForProperty 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
GetExplorerForProperty(String) |
ModelExplorer 지정된 |
GetExplorerForProperty(String, Func<Object,Object>) |
ModelExplorer 지정된 |
GetExplorerForProperty(String, Object) |
ModelExplorer 지정된 |
GetExplorerForProperty(String)
- Source:
- ModelExplorer.cs
- Source:
- ModelExplorer.cs
- Source:
- 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>)
- Source:
- ModelExplorer.cs
- Source:
- ModelExplorer.cs
- Source:
- 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)
- Source:
- ModelExplorer.cs
- Source:
- ModelExplorer.cs
- Source:
- 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
입니다.
설명
이렇게 하면 특정 모델 값이 있는 모델 탐색기가 생성되므로 결과는 캐시되지 않습니다.