我必须将mobilId
(int) 传递给方法UpdateStatus
,我不知道该怎么做
Update_Completed += new EventHandler<AsyncCompletedEventArgs>(UpdateStatus);
protected void UpdateStatus(object sender, AsyncCompletedEventArgs e, int mobilId)
{
Define(Id, e.Cancelled, e.Error, mobilId);
}
这两种方法都在同一个文件中。请让我知道是否有任何方法可以做到这一点。