Catatan
Akses ke halaman ini memerlukan otorisasi. Anda dapat mencoba masuk atau mengubah direktori.
Akses ke halaman ini memerlukan otorisasi. Anda dapat mencoba mengubah direktori.
Adds an element that has the specified key and value to the collection of value providers.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Public Sub Add ( _
key As String, _
value As ValueProviderResult _
)
public void Add(
string key,
ValueProviderResult value
)
public:
virtual void Add(
String^ key,
ValueProviderResult^ value
) sealed
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.
Implements
IDictionary<TKey, TValue>.Add(TKey, TValue)
Exceptions
| 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. |