Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the most natural way to return an empty ActionResult (for child action)?

public ActionResult TestAction(bool returnValue)
{
   if (!returnValue)
     return View(EmptyView);

   return View(RealView);
}

One option I can see is to create an empty view and reference it at EmptyView... but may be there is any built-in option?

share|improve this question
Doesn't View() hav an option to return just text? If so, send an empty string. – AndyBursh Jul 28 '11 at 10:42

2 Answers

up vote 43 down vote accepted

return instance of EmptyResult class

 return new EmptyResult();
share|improve this answer
Exactly what I wanted... – user129206 Feb 21 '12 at 20:08
In an action that returns EmptyResult, is it the same as doing return null? – Robin Maben Aug 8 '12 at 13:08

if you want to return nothing you can do something like

if (!returnValue)
     return Content("");

   return View(RealView);
share|improve this answer
1  
return new EmptyResult(); is the preferred approach – RickAndMSFT Mar 19 '12 at 19:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.