本文整理匯總了C#中Slickflow.Engine.Service.WorkflowService.WithdrawProcess方法的典型用法代碼示例。如果您正苦於以下問題:C# WorkflowService.WithdrawProcess方法的具體用法?C# WorkflowService.WithdrawProcess怎麽用?C# WorkflowService.WithdrawProcess使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Slickflow.Engine.Service.WorkflowService
的用法示例。
在下文中一共展示了WorkflowService.WithdrawProcess方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: WithdrawProcess
public ResponseResult WithdrawProcess(WfAppRunner runner)
{
IWorkflowService wfService = new WorkflowService();
IDbConnection conn = SessionFactory.CreateConnection();
IDbTransaction trans = null;
try
{
trans = conn.BeginTransaction();
var result = wfService.WithdrawProcess(conn, runner, trans);
if (result.Status == WfExecutedStatus.Success)
{
trans.Commit();
return ResponseResult.Success();
}
else
{
trans.Rollback();
return ResponseResult.Error(result.Message);
}
}
catch (WorkflowException w)
{
trans.Rollback();
return ResponseResult.Error(w.Message);
}
finally
{
trans.Dispose();
if (conn.State == ConnectionState.Open)
conn.Close();
}
}
示例2: btnWithdraw_Click
/// <summary>
/// 撤銷流程
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void btnWithdraw_Click(object sender, EventArgs e)
{
WfAppRunner appRunner = new WfAppRunner();
appRunner.ProcessGUID = process_guid;
appRunner.AppInstanceID = application_instance_id;
appRunner.AppName = "WallwaOrder";
appRunner.UserID = "1";
appRunner.UserName = "admin";
IWorkflowService wfService = new WorkflowService();
var result = wfService.WithdrawProcess(appRunner);
var msg = string.Format("流程撤銷結果:{0}\r\n", result.Status);
textBox1.Text += msg;
}