C# Class Decision.Common.AtomActionResult

Represents a class that is used to render an Atom 1.0 feed by using an SyndicationFeed instance representing the feed.
Inheritance: System.Web.Mvc.ActionResult
Afficher le fichier Open project: rabbal/Decision

Méthodes publiques

Méthode Description
AtomActionResult ( System.ServiceModel.Syndication.SyndicationFeed syndicationFeed ) : System.ServiceModel.Syndication

Initializes a new instance of the AtomActionResult class.

ExecuteResult ( ControllerContext context ) : void

Executes the call to the ActionResult method and returns the created feed to the output response.

Method Details

AtomActionResult() public méthode

Initializes a new instance of the AtomActionResult class.
public AtomActionResult ( System.ServiceModel.Syndication.SyndicationFeed syndicationFeed ) : System.ServiceModel.Syndication
syndicationFeed System.ServiceModel.Syndication.SyndicationFeed The Atom 1.0 .
Résultat System.ServiceModel.Syndication

ExecuteResult() public méthode

Executes the call to the ActionResult method and returns the created feed to the output response.
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.
Résultat void