Share via


HtmlTargetElementAttribute.TagStructure 屬性

定義

預期的標記結構。 預設值為 Unspecified

public:
 property Microsoft::AspNetCore::Razor::TagHelpers::TagStructure TagStructure { Microsoft::AspNetCore::Razor::TagHelpers::TagStructure get(); void set(Microsoft::AspNetCore::Razor::TagHelpers::TagStructure value); };
public Microsoft.AspNetCore.Razor.TagHelpers.TagStructure TagStructure { get; set; }
member this.TagStructure : Microsoft.AspNetCore.Razor.TagHelpers.TagStructure with get, set
Public Property TagStructure As TagStructure

屬性值

備註

如果 Unspecified 和 沒有其他標籤協助程式套用至相同的元素,則會使用其 TagStructureNormalOrSelfClosing 行為:

<my-tag-helper></my-tag-helper>
<!-- OR -->
<my-tag-helper />

否則,如果套用至相同元素的另一個標籤協助程式確實指定其行為,則會使用該行為。

如果 WithoutEndTag HTML 元素可以下列格式撰寫:

<my-tag-helper>
<!-- OR -->
<my-tag-helper />

適用於