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
Mostra file Open project: rabbal/Decision

Public Methods

Method 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 method

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 .
return System.ServiceModel.Syndication

ExecuteResult() public method

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.
return void