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にある のTestアクションのHomeControllerビューは、 に/Areas/Admin/Views/Home/Test.cshtml配置する必要があります。 などの /areas/admin/views/home/test.cshtml 場所は検出されません。

適用対象