可以使用HttpResponseMessage类和StringContent类来将HTML内容包裹在HTTP响应中返回给客户端。具体的示例代码如下:
[HttpPost]
public HttpResponseMessage GetHtmlContent()
{
string htmlContent = "Hello, world!
";
var response = new HttpResponseMessage();
response.Content = new StringContent(htmlContent, Encoding.UTF8, "text/html");
return response;
}
在这个示例中,我们首先定义了需要返回的HTML内容,然后创建了一个HttpResponseMessage对象。接着,我们使用StringContent类将HTML内容包裹,并将其设置为HttpResponseMessage对象的Content属性。最后返回HttpResponseMessage对象即可。