共用方式為


ViewHierarchyUtility.GetViewStartLocations(String) 方法

定義

取得適用于指定路徑的檢視開始位置。

public:
 static System::Collections::Generic::IEnumerable<System::String ^> ^ GetViewStartLocations(System::String ^ applicationRelativePath);
public static System.Collections.Generic.IEnumerable<string> GetViewStartLocations (string applicationRelativePath);
static member GetViewStartLocations : string -> seq<string>
Public Shared Function GetViewStartLocations (applicationRelativePath As String) As IEnumerable(Of String)

參數

applicationRelativePath
String

要尋找 _ViewStart 之檔案的應用程式相對路徑。

傳回

代表潛在檢視開始位置的路徑序列。

備註

這個方法會傳回從 目錄 applicationRelativePath 開始的路徑,並向上移動,直到到達應用程式根目錄為止。 例如 /Views/Home/View.cshtml - > [ /Views/Home/_ViewStart.cshtml, /Views/_ViewStart.cshtml, /_ViewStart.cshtml ]

適用於