ChunkInheritanceUtility.GetInheritedChunkTreeResults(String) 方法

定义

获取每个适用于 位于 pagePath的页的已ChunkTree分析的 和文件路径_ViewImports的排序IReadOnlyList<T>。 对列表进行排序,ChunkTreeResultChunkTree_ViewImports以便首先显示文件系统中最接近 的 的 pagePath

public:
 virtual System::Collections::Generic::IReadOnlyList<Microsoft::AspNetCore::Mvc::Razor::Directives::ChunkTreeResult ^> ^ GetInheritedChunkTreeResults(System::String ^ pagePath);
public virtual System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Mvc.Razor.Directives.ChunkTreeResult> GetInheritedChunkTreeResults (string pagePath);
abstract member GetInheritedChunkTreeResults : string -> System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Mvc.Razor.Directives.ChunkTreeResult>
override this.GetInheritedChunkTreeResults : string -> System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Mvc.Razor.Directives.ChunkTreeResult>
Public Overridable Function GetInheritedChunkTreeResults (pagePath As String) As IReadOnlyList(Of ChunkTreeResult)

参数

pagePath
String

要查找其继承区块的页面的路径。

返回

IReadOnlyList<T>分析_ViewImportsChunkTree的 及其文件路径的 。

注解

对结果 IReadOnlyList<T> 进行排序,以便最靠近应用程序根目录的_ViewImport的结果先显示,最接近页面_ViewImport最后显示,即 [ /_ViewImport、/Views/_ViewImport、/Views/Home/_ViewImport ]

适用于