iactioncontext.cs

来自「工作流的基本资料(文档资料」· CS 代码 · 共 19 行

CS
19
字号
using System;
using NetBpm.Workflow.Execution;

namespace NetBpm.Workflow.Delegation
{
	/// <summary> allows the Interaction-implementor to interact with and get information from
	/// the process engine.
	/// </summary>
	public interface IActionContext : IHandlerContext
	{
		/// <summary> gets the {@link Flow} in which the {@link Action} is executed.</summary>
		new IFlow GetFlow();

		/// <summary> sets the {@link AttributeInstance} for the attribute with name attributeName to the
		/// value attributeValue.   
		/// </summary>
		void SetAttribute(String attributeName, Object attributeValue);
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?