C# Класс SharpArch.Web.Mvc.JsonNet.JsonNetResult

Наследование: System.Web.Mvc.ActionResult
Показать файл Открыть проект

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