낭만 프로그래머

.Net MVC Controller에서 String을 JSON으로 전송 본문

ETC

.Net MVC Controller에서 String을 JSON으로 전송

조영래 2015. 8. 11. 09:40

*  Controller에서 문자열을 Json 형태로 전송
: Content 메소드를 사용

Method

Parameter

Return

 Content(String)

 content
   Type: System.String
   The content to write to the response.

ContentResult

 Content(String, String)

 content
   Type: System.String
   The content to write to the response.
 
 contentType
   Type: System.String
   The content type (MIME type).

ContentResult

 Content(String, String, Encoding)

 content
   Type: System.String
   The content to write to the response.
 
 contentType
   Type: System.String
   The content type (MIME type).
 
 contentEncoding
   Type: System.Text.Encoding
   The content encoding.

ContentResult

  

*  예제 

'ETC' 카테고리의 다른 글

Youtube (유튜브) 에서 동영상 이미지 가져오기  (0) 2019.04.01
react-native로 작성한 소스를 Android Studio에서 실행  (0) 2018.10.01
갤럭시 S8+ 붉은 액정 확인  (0) 2017.05.11
LITE IDE 설치  (0) 2016.01.15
Go 설치하기  (0) 2016.01.15