C# (CSharp) MvcContrib.ActionResults Пространство имен

Классы

Имя Описание
HeadResult HeadResult is a specific ActionResult for returning the client an HttpStatusCode. This is particular useful for RESTful applications that return status codes only in some situations eg Not-Modified
XmlResult Action result that serializes the specified object into XML and outputs it to the response stream. people = _peopleService.GetPeople(); return new XmlResult(people); } ]]>