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