Share via


ValueProviderDictionary.Item Property (String)

 

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

public ValueProviderResult this[
    string key
] { get; set; }
public:
property ValueProviderResult^ default[
    String^ key
] {
    virtual ValueProviderResult^ get(String^ key) sealed;
    virtual void set(String^ key, ValueProviderResult^ value) sealed;
}
abstract Item : 
        key:string -> ValueProviderResult with get, set
override Item : 
        key:string -> ValueProviderResult with get, set
Public Property Item (
    key As String
) As ValueProviderResult

Property Value

Type: System.Web.Mvc.ValueProviderResult

The ValueProviderResult object.

Implements

IDictionary<TKey, TValue>.Item[TKey]

See Also

ValueProviderDictionary Class
System.Web.Mvc Namespace

Return to top