ValueProviderCollection Constructors

Definition

Overloads

ValueProviderCollection()

Initializes a new instance of the ValueProviderCollection class.

ValueProviderCollection(IList<IValueProvider>)

Initializes a new instance of the ValueProviderCollection class and registers the specified value providers.

ValueProviderCollection()

Initializes a new instance of the ValueProviderCollection class.

public ValueProviderCollection ();
Public Sub New ()

Applies to

ValueProviderCollection(IList<IValueProvider>)

Initializes a new instance of the ValueProviderCollection class and registers the specified value providers.

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

Parameters

list
IList<IValueProvider>

The list of value providers to register.

Applies to