RazorViewEngineOptions.PageViewLocationFormats 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得從 RazorViewEngine 轉譯 Razor 頁面的內容搜尋檢視 (的位置,例如版面配置和部分) 。
public:
property System::Collections::Generic::IList<System::String ^> ^ PageViewLocationFormats { System::Collections::Generic::IList<System::String ^> ^ get(); };
public System.Collections.Generic.IList<string> PageViewLocationFormats { get; }
member this.PageViewLocationFormats : System.Collections.Generic.IList<string>
Public ReadOnly Property PageViewLocationFormats As IList(Of String)
屬性值
備註
位置是格式字串, (請參閱 https://msdn.microsoft.com/en-us/library/txafckwd.aspx 可能包含下列格式專案的) :
- {0} - 檢視名稱
- {1} - 頁面名稱
PageViewLocationFormats 與檢視位置展開器搭配運作,以執行階層式路徑查閱。 例如,假設使用 /Pages 作為根目錄使用 /Account/Manage/Index 等頁面,檢視引擎將會在下列位置搜尋檢視:
/Pages/Account/Manage/ {0} .cshtml /Pages/Account/ {0} .cshtml /Pages/ {0} .cshtml /Pages/Shared/ {0} .cshtml /Views/Shared/ {0} .cshtml