반응형

 

ASP.NET Web API GET요청시 JSON 포맷으로 무조건 리턴 받게 하는 방식이다.

JsonMediaTypeFormatter를 이용해서 Employee 객체를 무조건 JSON으로 직렬화시켜서

응답으로 내보내게 된다.

 

public HttpResponseMessage Get(int id)
{
    var employee = list.FirstOrDefault(e => e.Id == id);
    return new HttpResponseMessage()
    {
        Content = new ObjectContent<Employee>(employee,
        Configuration.Formatters.JsonFormatter)
    };
}

반응형

+ Recent posts