我有运营合同:
[System.ServiceModel.Web.WebGet( UriTemplate = "c" , BodyStyle = WebMessageBodyStyle.Bare )]
[OperationContract]
string Connect ( );
我将其实现为:
public string Connect ( )
{
return "<a href='someLingk' >Some link</a>";
}
当我转到该链接时,我得到:
如何将响应格式化为 html?甚至纯文本。我不想取回 html 或 json ......
我知道我可以创建一个查询服务的网站,但我只想创建一个可以在任何浏览器上运行的简单的“类似控制台”的应用程序......