TagHelperAttributeDescriptor.IsIndexer Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.