Hi,
i got a webservice and want to return this "string" as a bare string, without the extra serialization by WCF, because it's already serialized... how do i do it?
[OperationContract]
[FaultContract(typeof(Exception))]
[WebGet(ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Bare,
RequestFormat = WebMessageFormat.Json)]
string Get_Json();