public async static Task <string> ToHtml(this HttpRequest request, bool showHeaders = true, bool showBody = true)
 {
     return(await request.ToStringContent(showHeaders, showBody, true));
 }
 public static string ToHtml(this HttpRequest request, bool showHeaders = true, bool showBody = true)
 {
     return(request.ToStringContent(showHeaders, showBody, true));
 }