ValueProviderDictionary.Add Method
Adds an item to the collection of value providers.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
| Name | Description | |
|---|---|---|
![]() | Add(KeyValuePair<String, ValueProviderResult>) | Adds the specified item to the collection of value providers. |
![]() | Add(String, Object) | Adds an element that has the specified key and value to the collection of value providers. |
![]() | Add(String, ValueProviderResult) | Adds an element that has the specified key and value to the collection of value providers. |
ValueProviderDictionary.Add Method (KeyValuePair<String, ValueProviderResult>)
Adds the specified item to the collection of value providers.
Parameters
- item
-
Type:
System.Collections.Generic.KeyValuePair<String, ValueProviderResult>
The object to add to the ICollection<T> object.
Implements
ICollection<T>.Add(T)| Exception | Condition |
|---|---|
| NotSupportedException | The ICollection<T> object is read-only. |
ValueProviderDictionary.Add Method (String, Object)
Adds an element that has the specified key and value to the collection of value providers.
Parameters
- key
-
Type:
System.String
The key of the element to add.
- value
-
Type:
System.Object
The value of the element to add.
| Exception | Condition |
|---|---|
| NotSupportedException | The IDictionary<TKey, TValue> object is read-only. |
| ArgumentNullException | key is null. |
| ArgumentException | An element that has the specified key already exists in the IDictionary<TKey, TValue> object. |
ValueProviderDictionary.Add Method (String, ValueProviderResult)
Adds an element that has the specified key and value to the collection of value providers.
Parameters
- key
-
Type:
System.String
The key of the element to add.
- value
-
Type:
System.Web.Mvc.ValueProviderResult
The value of the element to add.
| Exception | Condition |
|---|---|
| NotSupportedException | The IDictionary<TKey, TValue> object is read-only. |
| ArgumentNullException | key is null. |
| ArgumentException | An element that has the specified key already exists in the IDictionary<TKey, TValue> object. |
