Interface IDynamicList<TValue>
Represents a list whose items are tracked by a string key associated with the id of div elements in an HTML form, and whose items can be succesfully binded to object properties by ASP.NET's default IModelBinder.
Namespace: DynamicVML
Assembly: DynamicVML.dll
Syntax
public interface IDynamicList<out TValue> : IDynamicList where TValue : IDynamicListItem
Type Parameters
Name | Description |
---|---|
TValue |
Remarks
This is the generic version of IDynamicList which can be used whenever list item types need to be known.
Properties
| Improve this Doc View SourceItem[String]
Gets the
Declaration
TValue this[string id] { get; }
Parameters
Type | Name | Description |
---|---|---|
String | id |
Property Value
Type | Description |
---|---|
TValue |
Remarks
This is an explicit interface implementation which is only available when interacting with this list through the IDynamicList<TValue> interface. Normally, this should only be the case when accessing the list from a view.