In using HtmlTextWriter to write directly to the response stream in asp.net core, those writes need to be async.
HtmlTextWriter does support some async methods to do writes, but it lacks async alternatives for methods like WriteFullBeginTag, WriteEndTag, WriteBeginTag and similar methods.
In using HtmlTextWriter to write directly to the response stream in asp.net core, those writes need to be async.
HtmlTextWriter does support some async methods to do writes, but it lacks async alternatives for methods like WriteFullBeginTag, WriteEndTag, WriteBeginTag and similar methods.