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 ValueProviderResult 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 ValueProviderResult
Get
Set
public ValueProviderResult this[
string key
] { get; set; }
public:
virtual property ValueProviderResult^ default[String^ key] {
ValueProviderResult^ get (String^ key) sealed;
void set (String^ key, ValueProviderResult^ value) sealed;
}
Parameters
- key
Type: System.String
The key.
Property Value
Type: System.Web.Mvc.ValueProviderResult
The ValueProviderResult object.
Implements
IDictionary<TKey, TValue>.Item[TKey]