RazorViewEngineOptions.ViewLocationFormats 属性

定义

获取将在其中 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} - 控制器名称

这些位置的值在区分大小写的文件系统上区分大小写。 例如, 操作的TestHomeController视图应位于 /Views/Home/Test.cshtml。 无法发现 等 /views/home/test.cshtml 位置。

适用于