ASP.NET Web API 반환 데이터 XML 형식 제거(JSON 형태로 데이터 반환)
C#2017. 12. 22. 09:25
MVC4 Quick Tip #3–Removing the XML Formatter from ASP.Net Web API
In Global.asax
add the line:
GlobalConfiguration.Configuration.Formatters.XmlFormatter.SupportedMediaTypes.Clear();
like so:
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
RegisterGlobalFilters(GlobalFilters.Filters);
RegisterRoutes(RouteTable.Routes);
BundleTable.Bundles.RegisterTemplateBundles();
GlobalConfiguration.Configuration.Formatters.XmlFormatter.SupportedMediaTypes.Clear();
}
'C#' 카테고리의 다른 글
폴더 압축 (SharpZipLib 사용) (0) | 2017.11.28 |
---|---|
ClosedXML 사용 (0) | 2017.05.17 |
ASP.NET 엑셀 출력 스타일 (0) | 2016.08.31 |
사진 이미지 관련 클래스 (0) | 2016.04.14 |
오라클 BLOB 등록 및 조회 (0) | 2016.04.14 |