Represents the result of invoking a controller action.
Example #1
0
 public void Complete(ActionResult result)
 {
     _result = result;
     _callback(this);
 }
Example #2
0
 public ActionAsyncResult(ActionResult result, object asyncState)
 {
     _result = result;
     _asyncState = asyncState;
 }