RazorViewEngineOptions.AreaViewLocationFormats 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取将在某个 RazorViewEngine 区域内搜索视图的位置。
public:
property System::Collections::Generic::IList<System::String ^> ^ AreaViewLocationFormats { System::Collections::Generic::IList<System::String ^> ^ get(); };
public System.Collections.Generic.IList<string> AreaViewLocationFormats { get; }
member this.AreaViewLocationFormats : System.Collections.Generic.IList<string>
Public ReadOnly Property AreaViewLocationFormats As IList(Of String)
属性值
注解
从属于某个区域的控制器返回的视图的位置。 位置是格式字符串, (请参阅 https://msdn.microsoft.com/en-us/library/txafckwd.aspx) ,其中可能包含以下格式项:
- {0} - 操作名称
- {1} - 控制器名称
- {2} - 区域名称
这些位置的值在区分大小写的文件系统上区分大小写。 例如,下Admin
区域的 操作的HomeController
视图Test
应位于 /Areas/Admin/Views/Home/Test.cshtml
。 无法发现等 /areas/admin/views/home/test.cshtml
位置。