C# Class MvcContrib.ActionResults.XmlResult

Action result that serializes the specified object into XML and outputs it to the response stream. people = _peopleService.GetPeople(); return new XmlResult(people); } ]]>
Inheritance: System.Web.Mvc.ActionResult
Afficher le fichier Open project: atomicobject/mvccontrib

Méthodes publiques

Méthode Description
ExecuteResult ( System.Web.Mvc.ControllerContext context ) : void

Serialises the object that was passed into the constructor to XML and writes the corresponding XML to the result stream.

XmlResult ( object objectToSerialize ) : System.Web.Mvc

Creates a new instance of the XmlResult class.

XmlResult ( object objectToSerialize, XmlAttributeOverrides xmlAttributeOverrides ) : System.Web.Mvc

Creates a new instance of the XMLResult class.

Method Details

ExecuteResult() public méthode

Serialises the object that was passed into the constructor to XML and writes the corresponding XML to the result stream.
public ExecuteResult ( System.Web.Mvc.ControllerContext context ) : void
context System.Web.Mvc.ControllerContext The controller context for the current request.
Résultat void

XmlResult() public méthode

Creates a new instance of the XmlResult class.
public XmlResult ( object objectToSerialize ) : System.Web.Mvc
objectToSerialize object The object to serialize to XML.
Résultat System.Web.Mvc

XmlResult() public méthode

Creates a new instance of the XMLResult class.
public XmlResult ( object objectToSerialize, XmlAttributeOverrides xmlAttributeOverrides ) : System.Web.Mvc
objectToSerialize object The object to serialize to XML.
xmlAttributeOverrides System.Xml.Serialization.XmlAttributeOverrides
Résultat System.Web.Mvc