Not
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Adds the specified key/value pair to the dictionary.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Private Sub Add ( _
keyValuePair As KeyValuePair(Of String, Object) _
) Implements ICollection(Of KeyValuePair(Of String, Object)).Add
void ICollection<KeyValuePair<string, Object>>.Add(
KeyValuePair<string, Object> keyValuePair
)
private:
virtual void Add(
KeyValuePair<String^, Object^> keyValuePair
) sealed = ICollection<KeyValuePair<String^, Object^>>::Add
Parameters
- keyValuePair
Type: System.Collections.Generic.KeyValuePair<String, Object>
The key/value pair.
Implements
Remarks
This member is an explicit interface member implementation. It can be used only when the TempDataDictionary instance is cast to an ICollection<T> interface.