Как я могу получить HTML от Taghelper?Скажем, я создал Taghelper для настроенного флажка.Какой будет код для хранения html в переменной?
checkboxTagHelper.ProcessAsync(checkboxContext, checkboxOutput);
Кроме того, я заметил, что renderHtmlAttributes не работает в .Net Core.Однако работает в обычном Mvc 4.6.3.Возможно, это правильный метод, и каков эквивалент в .Net Core?
http://blog.techdominator.com/article/rendering-a-tag-helper-inside-another-tag-helper.html
return $"<{innerOutput.TagName} {renderHtmlAttributes(innerOutput)}>{innerOutput.Content.GetContent()}</{innerOutput.TagName}>";