TagHelperAttributeDescriptor.IsIndexer Property

Definition

Gets an indication whether this TagHelperAttributeDescriptor is used for dictionary indexer assignments.

public:
 property bool IsIndexer { bool get(); void set(bool value); };
public bool IsIndexer { get; set; }
member this.IsIndexer : bool with get, set
Public Property IsIndexer As Boolean

Property Value

Boolean

If true this TagHelperAttributeDescriptor should be associated with all HTML attributes that have names starting with Name. Otherwise this TagHelperAttributeDescriptor is used for property assignment and is only associated with an HTML attribute that has the exact Name.

Remarks

HTML attribute names are matched case-insensitively, regardless of IsIndexer.

Applies to