I have the operation contract:
[System.ServiceModel.Web.WebGet( UriTemplate = "c" , BodyStyle = WebMessageBodyStyle.Bare )]
[OperationContract]
string Connect ( );
and I have it implemented as:
public string Connect ( )
{
return "<a href='someLingk' >Some link</a>";
}
when I go to that link I get:
how can I format the response as html? or even plain text. I don't want to get back html nor json...
I know I can create a website that queries the service but I just want to create a simple "Console like" application that works on any browser...