TagStructure Enum

Definition

The structure the element should be written in.

public enum class TagStructure
public enum TagStructure
type TagStructure = 
Public Enum TagStructure
Inheritance
TagStructure

Fields

NormalOrSelfClosing 1

Element can be written as <my-tag-helper></my-tag-helper> or <my-tag-helper />.

Unspecified 0

If no other tag helper applies to the same element and specifies a TagStructure, NormalOrSelfClosing will be used.

WithoutEndTag 2

Element can be written as <my-tag-helper> or <my-tag-helper />.

Applies to