ViewEngineCollection Constructors

Definition

Overloads

ViewEngineCollection()

Initializes a new instance of the ViewEngineCollection class.

ViewEngineCollection(IList<IViewEngine>)

Initializes a new instance of the ViewEngineCollection class using the specified list of view engines.

ViewEngineCollection()

Initializes a new instance of the ViewEngineCollection class.

public ViewEngineCollection ();
Public Sub New ()

Applies to

ViewEngineCollection(IList<IViewEngine>)

Initializes a new instance of the ViewEngineCollection class using the specified list of view engines.

public ViewEngineCollection (System.Collections.Generic.IList<System.Web.Mvc.IViewEngine> list);
new System.Web.Mvc.ViewEngineCollection : System.Collections.Generic.IList<System.Web.Mvc.IViewEngine> -> System.Web.Mvc.ViewEngineCollection
Public Sub New (list As IList(Of IViewEngine))

Parameters

list
IList<IViewEngine>

The list that is wrapped by the new collection.

Exceptions

list is null.

Applies to