Share via


RazorView.ViewStartFileExtensions Property

Gets or sets the set of file extensions that will be used when looking up view start files.

Namespace:  System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

Syntax

'Declaration
Public Property ViewStartFileExtensions As IEnumerable(Of String)
'Usage
Dim instance As RazorView
Dim value As IEnumerable(Of String)

value = instance.ViewStartFileExtensions
public IEnumerable<string> ViewStartFileExtensions { get; private set; }
public:
property IEnumerable<String^>^ ViewStartFileExtensions {
    IEnumerable<String^>^ get ();
    private: void set (IEnumerable<String^>^ value);
}
function get ViewStartFileExtensions () : IEnumerable<String>
private function set ViewStartFileExtensions (value : IEnumerable<String>)

Property Value

Type: System.Collections.Generic.IEnumerable<String>
The set of file extensions that will be used when looking up view start files.

Remarks

View start files are layout files and master-page files. For example, view start files can include _ViewStart.cshtml in a C# ASP.NET MVC project and _ViewStart.vbhtml in a Visual Basic ASP.NET MVC project.

See Also

Reference

RazorView Class

System.Web.Mvc Namespace