I have an operation contract:
[System.ServiceModel.Web.WebGet( UriTemplate = "c" , BodyStyle = WebMessageBodyStyle.Bare )] [OperationContract] string Connect ( );
and I implemented it as:
public string Connect ( ) { return "<a href='someLingk' >Some link</a>"; }
when I go to this link, I get: 
how can i format the response as html? or even plain text. I do not want to return html or json ...
I know that I can create a website that requests a service, but I just want to create a simple Console application that works in any browser ...
c # wcf
Tono nam
source share