Bagikan melalui


RazorViewEngineOptions.PageViewLocationFormats Properti

Definisi

Mendapatkan lokasi tempat RazorViewEngine akan mencari tampilan (seperti tata letak dan parsial) saat dicari dari konteks penyajian Halaman Razor.

public:
 property System::Collections::Generic::IList<System::String ^> ^ PageViewLocationFormats { System::Collections::Generic::IList<System::String ^> ^ get(); };
public System.Collections.Generic.IList<string> PageViewLocationFormats { get; }
member this.PageViewLocationFormats : System.Collections.Generic.IList<string>
Public ReadOnly Property PageViewLocationFormats As IList(Of String)

Nilai Properti

Keterangan

Lokasi adalah string format (lihat https://msdn.microsoft.com/en-us/library/txafckwd.aspx) yang mungkin berisi item format berikut:

  • {0} - Nama Tampilan
  • {1} - Nama Halaman

PageViewLocationFormats bekerja bersama dengan pemerluas lokasi tampilan untuk melakukan pencarian jalur hierarkis. Misalnya, mengingat Halaman seperti /Account/Manage/Index menggunakan /Pages sebagai root, mesin tampilan akan mencari tampilan di lokasi berikut:

/Pages/Account/Manage/{0}.cshtml /Pages/Account/{0}.cshtml /Pages/{0}.cshtml /Pages/Shared/{0}.cshtml /Views/Shared/{0}.cshtml

Berlaku untuk