函数想从另一个方法调用。
public virtual void Update(CompanyFile cf, T entity, ICompanyFileCredentials credentials, Action<HttpStatusCode, string> onComplete, Action<Uri, Exception> onError, ErrorLevel errorLevel = ErrorLevel.IgnoreWarnings);
尝试使用以下代码。如何从 onComplete 和 onError 函数获取返回值。?
从其他代码调用上述方法。
loServiceInvoiceSvc.Update(msCompanyFile, serviceInvoice, msCompanyFileCredentials,SInvoiceUpdateSuccess, SInvoiceUpdateError);
成功方法:
public string SInvoiceUpdateSuccess(HttpStatusCode foStatus)
{
return "1";
}
错误方法
public Exception SInvoiceUpdateError(Uri foUri)
{
Exception ex = new Exception();
return ex;
}