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