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