我必须要通过mobilId
(INT)的方法UpdateStatus
,我不知道该怎么做如何发送参数AsyncCompletedEventArgs
Update_Completed += new EventHandler<AsyncCompletedEventArgs>(UpdateStatus);
protected void UpdateStatus(object sender, AsyncCompletedEventArgs e, int mobilId)
{
Define(Id, e.Cancelled, e.Error, mobilId);
}
这两种方法都在同一个文件。 请让我知道是否有任何方法可以做到这一点。
这是从基类继承吗?为了完成它,必须开始一些事情。您的更新状态方法是回调。 – Chris 2012-08-03 17:25:56