ViewEngineCollection Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.