C# 클래스 SharpArch.Web.Mvc.JsonNet.JsonNetResult

상속: System.Web.Mvc.ActionResult
파일 보기 프로젝트 열기: sharparchitecture/Sharp-Architecture

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
ExecuteResult ( ControllerContext context ) : void

Enables processing of the result of an action method by a custom type that inherits from the T:System.Web.Mvc.ActionResult class.

JsonNetResult ( ) : System

Initializes a new instance of the JsonNetResult class.

JsonNetResult ( object data ) : System

Initializes a new instance of the JsonNetResult class.

JsonNetResult ( object data, string contentType ) : System

Initializes a new instance of the JsonNetResult class.

JsonNetResult ( object data, string contentType, Encoding encoding ) : System

Initializes a new instance of the JsonNetResult class.

메소드 상세

ExecuteResult() 공개 메소드

Enables processing of the result of an action method by a custom type that inherits from the T:System.Web.Mvc.ActionResult class.
context
public ExecuteResult ( ControllerContext context ) : void
context ControllerContext The context in which the result is executed. The context information includes the controller, HTTP content, request context, and route data.
리턴 void

JsonNetResult() 공개 메소드

Initializes a new instance of the JsonNetResult class.
public JsonNetResult ( ) : System
리턴 System

JsonNetResult() 공개 메소드

Initializes a new instance of the JsonNetResult class.
public JsonNetResult ( object data ) : System
data object The data.
리턴 System

JsonNetResult() 공개 메소드

Initializes a new instance of the JsonNetResult class.
public JsonNetResult ( object data, string contentType ) : System
data object The data.
contentType string Type of the content.
리턴 System

JsonNetResult() 공개 메소드

Initializes a new instance of the JsonNetResult class.
public JsonNetResult ( object data, string contentType, Encoding encoding ) : System
data object The data.
contentType string Type of the content.
encoding System.Text.Encoding The encoding.
리턴 System