Nuta
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować się zalogować lub zmienić katalog.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
Gets or sets the specified key in an object that implements the IModelBinder interface.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Public Default Property Item ( _
key As Type _
) As IModelBinder
Get
Set
public IModelBinder this[
Type key
] { get; set; }
public:
virtual property IModelBinder^ default[Type^ key] {
IModelBinder^ get (Type^ key) sealed;
void set (Type^ key, IModelBinder^ value) sealed;
}
Parameters
- key
Type: System.Type
The item key.
Property Value
Type: System.Web.Mvc.IModelBinder
The key for the specified item.
Implements
IDictionary<TKey, TValue>.Item[TKey]