How to convert TaghelperContent to TagBuilder?
For example, i have below taghelper:
[HtmlTargetElement("custom-tag")]
public class CustomTag: TagHelper
{
public async override Task ProcessAsync(TagHelperContext context, TagHelperOutput output)
{
var content = await output.GetChildContentAsync();
TagBuilder tag= content.??? // how to return as tagbuilder?
}
}
Thanks.
To convert TagHelperContent to TagBuilder, you can use the TagBuilder constructor and set its InnerHtml property with the content of the TagHelperContent. Here's an example of how you can do this:
In this example, TagBuilder is instantiated with the tag name from output.TagName, and then the InnerHtml property is set with the content from TagHelperContent. Additionally, you can copy other attributes, classes, or styles from the original output if needed.