Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets or sets the object that has the specified key.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Public Default Property Item ( _
key As String _
) As Object
Get
Set
public Object this[
string key
] { get; set; }
public:
virtual property Object^ default[String^ key] {
Object^ get (String^ key) sealed;
void set (String^ key, Object^ value) sealed;
}
Parameters
- key
Type: System.String
The key to access.
Property Value
Type: System.Object
The object that has the specified key.
Implements
IDictionary<TKey, TValue>.Item[TKey]