Archives for: "September 2012, 12"
JSON in WCF
A lot of people know about WCF supports XML as the return response. Actually, it supports JSON. All you need to set ResponseFormat.
[WebGet(ResponseFormat=WebMessageFormat.Json)]
[OperationContract]
public SessionKeyDTO Authenicate(string username,… more »