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