RazorViewEngineOptions.AreaViewLocationFormats 属性

定义

获取将在某个 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 位置。

适用于