コード例 #1
0
 public async static Task <string> ToHtml(this HttpRequest request, bool showHeaders = true, bool showBody = true)
 {
     return(await request.ToStringContent(showHeaders, showBody, true));
 }
コード例 #2
0
 public static string ToHtml(this HttpRequest request, bool showHeaders = true, bool showBody = true)
 {
     return(request.ToStringContent(showHeaders, showBody, true));
 }